class Solution {
public:
ListNode *detectCycle(ListNode *head)
{
ListNode* slow = head;
ListNode* fast = head;
while (NULL != fast && NULL != fast->next)
{
slow = slow->next;
fast = fast->next->next;
if (slow == fast)
{
slow = head;
while(slow != fast)
{
slow = slow->next;
fast = fast->next;
}
return slow;
}
}
return NULL;
}
};Given a linked list, return the node where the cycle begins. If there is no cycle, return
null.
Follow up:
Can you solve it without using extra space?
本文介绍了一种使用快慢指针的方法来检测链表中是否存在循环,并定位循环开始的节点。该方法不需要额外的空间,通过两次遍历实现,首先确认是否存在循环,然后找到循环起点。
454

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



