-
Notifications
You must be signed in to change notification settings - Fork 1
/
LeetCode-141-Linked-List-Cycle.java
60 lines (47 loc) · 1.64 KB
/
LeetCode-141-Linked-List-Cycle.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
/*
LeetCode: https://leetcode.com/problems/linked-list-cycle/
LintCode: http://www.lintcode.com/problem/linked-list-cycle/
JiuZhang: http://www.jiuzhang.com/solutions/linked-list-cycle/
ProgramCreek: http://www.programcreek.com/2012/12/leetcode-linked-list-cycle/
Analysis:
Fast-slow node
slow goes 1 step at a time,and fast goes 2 steps at a time.
If we think slow is still,then fast goes 1 step at a time.
So,the problem is just like a Chasing problem.
There is a time when fast catches slower if there is cycle.
Runtime: 0 ms, faster than 100.00% of Java online submissions for Linked List Cycle.
Memory Usage: 36.8 MB, less than 99.99% of Java online submissions for Linked List Cycle.
*/
/**
* Definition for singly-linked list.
* class ListNode {
* int val;
* ListNode next;
* ListNode(int x) {
* val = x;
* next = null;
* }
* }
*/
public class Solution {
// public boolean hasCycle(ListNode head) {
// if (head == null) return false;
// ListNode slow = head, fast = head.next;
// while (fast != null && fast.next != null) {
// if (slow == fast) return true;
// slow = slow.next;
// fast = fast.next.next;
// }
// return false;
// }
public boolean hasCycle(ListNode head) {
if (head == null) return false;
ListNode slow = head, fast = head;
while (fast.next != null && fast.next.next != null) {
slow = slow.next;
fast = fast.next.next;
if (slow == fast) return true;
}
return false;
}
}