/*
 public class ListNode {
    int val;
    ListNode next = null;

    ListNode(int val) {
        this.val = val;
    }
}
*/
public class Solution {

    public ListNode EntryNodeOfLoop(ListNode pHead) {
        //快慢指针
        ListNode fast = pHead;
        ListNode slow = pHead;
        while(fast.next != null && fast.next.next != null){
            fast = fast.next.next;
            slow = slow.next;
            //快指针跟慢指针相遇时, 表示链表中有环
            if(fast == slow){
                break;
            }
        }
        
        //没有环, 返回null
        if(fast.next == null || fast.next.next == null){
            return null;
        }
        
        //有环的情况下
        while(pHead != slow){
            pHead = pHead.next;
            slow = slow.next;
        }
        return pHead;
    }
}