/**
 * Definition for singly-linked list.
 * class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) {
 *         val = x;
 *         next = null;
 *     }
 * }
 */
public class Solution {
    public boolean hasCycle(ListNode head) {
        // 一快 一慢 相遇即有环
        ListNode fast = head;
        ListNode slow = head;
        while(fast != null && fast.next != null){
            fast = fast.next;
            slow = slow.next;
            if(fast != null)
            fast = fast.next;
            if(fast == slow) return true;
           
        }
        return false;
    }
}