142. 环形链表 II
最近更新:2025-03-10 | 字数总计:162 | 阅读估时:1分钟 | 阅读量:次
- 解析
- hash表
- 双指针:快慢指针
Problem: 142. 环形链表 II
解析
hash表
hash表不用多说,存节点的地址。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| class Solution { public: ListNode *detectCycle(ListNode *head) { unordered_set<ListNode *> hashSet; ListNode *node = head; while (node != nullptr) { if (hashSet.find(node) != hashSet.end()) { return node; } hashSet.insert(node); node=node->next; } return nullptr; } };
|
双指针:快慢指针

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| class Solution { public: ListNode *detectCycle(ListNode *head) { if (head == nullptr || head->next == nullptr) { return nullptr; } ListNode *slow = head->next; ListNode *fast = head->next->next; while (slow != fast) { slow = slow->next; if (fast == nullptr || fast->next == nullptr) { return nullptr; } fast = fast->next->next; } ListNode *ans = head; while (slow != ans) { slow = slow->next; ans = ans->next; } return ans; } };
|