From : https://leetcode.com/problems/linked-list-cycle/
Given a linked list, determine if it has a cycle in it.
/**
* 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) return false;
ListNode *p1=head, *p2=head->next;
while(p2) {
p1 = p1->next;
if(p2->next) {
p2=p2->next->next;
} else return false;
if(p1 == p2) return true;
}
return p1==p2;
}
};
本文介绍了一种使用快慢指针的方法来判断链表中是否存在循环。通过初始化两个指针,一个每次移动一步,另一个每次移动两步,如果链表中有环,则这两个指针最终会相遇。
1182

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



