/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
ListNode *detectCycle(ListNode *head) {
ListNode* slow = head;
ListNode* fast = head;
while(fast && fast->next) {
fast = fast->next->next;
slow = slow->next;
if(fast == slow) {
break;
}
}
if(fast == nullptr || fast->next == nullptr) return NULL;
ListNode* idx1 = head;
ListNode* idx2 = fast;
while(idx1 != idx2) {
idx1 = idx1->next;
idx2 = idx2->next;
}
return idx1;
}
};
力扣142. 环形链表 II
LeetCode链表相关算法
最新推荐文章于 2025-11-24 14:44:53 发布
406

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



