-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathLinkedListCycleII.kt
More file actions
36 lines (33 loc) 路 846 Bytes
/
Copy pathLinkedListCycleII.kt
File metadata and controls
36 lines (33 loc) 路 846 Bytes
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
32
33
34
35
36
/**
* Given a linked list, return the node where the cycle begins. If there is no cycle, return null.
*
* Note: Do not modify the linked list.
*
* Follow up:
* Can you solve it without using extra space?
*
* Waiting to be judged.
*/
class LinkedListCycleII {
fun detectCycle(head: ListNode?): ListNode? {
var h = head
var slow = head
var fast = head
while (fast != null && fast.next != null) {
slow = slow?.next
fast = fast.next?.next
if (slow === fast) {
while (slow !== head) {
h = head?.next
slow = slow?.next
}
return h
}
}
return null
}
data class ListNode(
val `val`: Int,
var next: ListNode? = null
)
}