876.链表的中间结点

【LeetCode刷题-链表】--876.链表的中间结点-LMLPHP

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode() {}
 *     ListNode(int val) { this.val = val; }
 *     ListNode(int val, ListNode next) { this.val = val; this.next = next; }
 * }
 */
class Solution {
    public ListNode middleNode(ListNode head) {
        ListNode p = head;
        int count = 0;
        while(p!=null){
            p = p.next;
            count++;
        }
        int mid = count / 2;
        while(mid != 0){
            head = head.next;
            mid--;
        }
        return head;
    }
}
11-03 22:14