题目
给定一个链表,判断链表中是否有环。
为了表示给定链表中的环,我们使用整数 pos
来表示链表尾连接到链表中的位置(索引从 0 开始)。 如果 pos
是 -1
,则在该链表中没有环。
示例 1:
1 | 输入:head = [3,2,0,-4], pos = 1 |
示例 2:
1 | 输入:head = [1,2], pos = 0 |
示例 3:
1 | 输入:head = [1], pos = -1 |
进阶:
你能用 O(1)(即,常量)内存解决此问题吗?
Given a linked list, determine if it has a cycle in it.
To represent a cycle in the given linked list, we use an integer pos
which represents the position (0-indexed) in the linked list where tail connects to. If pos
is -1
, then there is no cycle in the linked list.
Example 1:
1 | Input: head = [3,2,0,-4], pos = 1 |
Example 2:
1 | Input: head = [1,2], pos = 0 |
Example 3:
1 | Input: head = [1], pos = -1 |
Follow up:
Can you solve it using O(1) (i.e. constant) memory?
解题方法
使用快慢指针,快指针fast一次循环比慢指针slow多走一步,如果存在环,则快慢指针总会相遇。这段代码跑了1ms,超过了72.81%的Java提交。
题目中的pos变量似乎没有什么用处。如果是要求pos的值的话,可以用HashMap,ListNode的HashCode为Key,索引为Value,一次遍历,HashMap中存在当前ListNode的键值对则返回对应Value,ListNode为空则不存在环,O(n)时间复杂度。
1 | /** |