/**
* 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 slow = head;
ListNode fast = head;
while(fast!=null && fast.next!=null){
fast = fast.next.next;
slow = slow.next;
if(fast == slow)
return true;
}
return false;
}
}
题解:
快慢指针,快指针能和慢指针相遇,说明有环,如果快指针指向了null,说明没有环。
为什么一定会相遇呢?因为fast走两步slow走一步,相当于fast是一步一步来靠近slow的,终有一天会追上。