Given a linked list, determine if it has a cycle in it.
Follow up:
Can you solve it without using extra space?
四个字:快慢指针。
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
bool hasCycle(ListNode *head) {
if (head == NULL)
return false;
ListNode *fast = head;
ListNode *slow = head;
while (fast && fast -> next)
{
fast = fast->next->next;
slow = slow->next;
if (fast == slow)
{
return true;
}
}
return false;
}
};
本文介绍了一种使用快慢指针方法检测链表中是否存在循环的算法。通过对比快指针和慢指针的移动速度,可以判断链表是否包含环形结构。
1184

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



