/**
* 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) {
if(head == null){
return false;
}
ListNode slow = head;
ListNode fast = head.next;
while (fast != null){
if(slow == fast){
return true;
}
slow = slow.next;
fast = fast.next;
if(fast != null){
fast = fast.next;
}
}
return false;
}
}
本文介绍了一种使用快慢指针的方法来检测链表中是否存在循环。通过实例代码展示了如何实现这一算法,并解释了其工作原理。
789

被折叠的 条评论
为什么被折叠?



