·
·
文章目录
  1. 题目介绍
  2. 复杂度
  3. 解题思路

Linked List Cycle II

题目介绍

LeetCode 142. Linked List Cycle II

复杂度

时间复杂度: O(n), 空间复杂度: O(1)

解题思路

先看下 Linked List Cycle 的题解,找到入环节点是个数学问题。
第一次相遇后,fast 指针移到 head,然后和 slow 指针一起一次移动一步,再次相遇时的节点就是入环节点。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
public class ListNode {
public var val: Int
public var next: ListNode?
public init(_ val: Int) {
self.val = val
self.next = nil
}
}

class Solution {
func detectCycle(head: ListNode?) -> ListNode? {
var slow = head
var fast = head
while true {
if fast == nil || fast?.next == nil {
return nil
}
slow = slow?.next
fast = fast?.next?.next
if slow === fast {
break
}
}
fast = head
while slow !== fast {
slow = slow?.next
fast = fast?.next
}
return fast
}
}
**版权声明**

Ivan’s Blog by Ivan Ye is licensed under a Creative Commons BY-NC-ND 4.0 International License.
叶帆创作并维护的叶帆的博客博客采用创作共用保留署名-非商业-禁止演绎4.0国际许可证

本文首发于Ivan’s Blog | 叶帆的博客博客( http://yeziahehe.com ),版权所有,侵权必究。

本文链接:http://yeziahehe.com/2020/03/11/LinkedListCycleII/

支持一下
扫一扫,支持yeziahehe
  • 微信扫一扫
  • 支付宝扫一扫