-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathLinkedListCycleII.java
More file actions
49 lines (43 loc) · 1.21 KB
/
Copy pathLinkedListCycleII.java
File metadata and controls
49 lines (43 loc) · 1.21 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
/**
* Given a linked list, return the node where the cycle begins. If there is no cycle, return null.
* <p>
* Note: Do not modify the linked list.
* <p>
* Follow up:
* Can you solve it without using extra space?
* <p>
* Accepted.
*/
public class LinkedListCycleII {
public ListNode detectCycle(ListNode head) {
ListNode slow = head, fast = head;
while (fast != null && fast.next != null) {
slow = slow.next;
fast = fast.next.next;
if (slow == fast) {
while (slow != head) {
head = head.next;
slow = slow.next;
}
return head;
}
}
return null;
}
public static class ListNode {
int val;
ListNode next;
ListNode(int x) {
val = x;
next = null;
}
@Override
public boolean equals(Object obj) {
if (obj instanceof ListNode) {
ListNode node = (ListNode) obj;
return this.next == null && node.next == null || this.val == node.val && (this.next != null) && this.next.equals(node.next);
}
return false;
}
}
}