forked from yubinbai/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution.java
71 lines (68 loc) · 1.75 KB
/
Solution.java
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/**
* Definition for singly-linked list.
* class ListNode {
* int val;
* ListNode next;
* ListNode(int x) {
* val = x;
* next = null;
* }
* }
*/
// http://en.wikipedia.org/wiki/Floyd%27s_cycle-finding_algorithm#Tortoise_and_hare
public class Solution {
public ListNode detectCycle(ListNode head) {
if (head == null || head.next == null) return null;
ListNode t = head.next;
ListNode h = head.next.next;
if (head == h) return h;
while (t != null && h != null && t != h) {
t = t.next;
if (h.next == null) return null;
h = h.next.next;
}
if (h == null) return null;
h = head;
while (t != h) {
t = t.next;
h = h.next;
}
return t;
}
public static void main(String[] args) {
int[] a = {1, 2};
ListNode head = new ListNode(0);
ListNode curr = head;
for (int i : a) {
curr.next = new ListNode(i);
// if (i == 100) {
// curr.next = head.next.next.next;
// break;
// }
curr = curr.next;
}
Solution sol = new Solution();
System.out.println(sol.detectCycle(head.next).val);
}
}
class ListNode {
int val;
ListNode next;
ListNode(int x) {
val = x;
next = null;
}
public void printList() {
ListNode curr = this;
if (curr == null) {
System.out.print("List : null");
return;
}
System.out.print("List : [ ");
while (curr != null) {
System.out.format("%d ", curr.val);
curr = curr.next;
}
System.out.println("] ");
}
}