forked from yubinbai/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution.java
54 lines (51 loc) · 1.3 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
/**
* 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 boolean hasCycle(ListNode head) {
if (head == null || head.next == null) return false;
ListNode t = head.next, h = head.next.next;
while (h != null && t != h) {
if (h.next == null) return false;
h = h.next.next;
t = t.next;
}
return (t == h);
}
public static void main(String[] args) {
ListNode head = new ListNode(1);
head.next = new ListNode(2);
Solution sol = new Solution();
System.out.println(sol.hasCycle(head));
}
}
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("] ");
}
}