leetcode 之Linked List Cycle(24)
Posted 牧马人夏峥
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode 之Linked List Cycle(24)相关的知识,希望对你有一定的参考价值。
两个思路,一是用哈希表记录每个结点是还被访问过;二是定义两个快、慢指针,如果存在环的话,两个指针必定会在某位结点相遇。
bool linkListNode(ListNode *head) { ListNode *fast=head, *slow=head; while (fast && fast->next) { slow = slow->next; fast = fast->next->next; if (fast == slow)return true; } return false; }
以上是关于leetcode 之Linked List Cycle(24)的主要内容,如果未能解决你的问题,请参考以下文章
[Leetcode] Linked list cycle ii 判断链表是否有环
LeetCode141 Linked List Cycle. LeetCode142 Linked List Cycle II