forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_141.java
42 lines (35 loc) · 861 Bytes
/
_141.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
/**
*
*/
package com.fishercoder.solutions;
import com.fishercoder.common.classes.ListNode;
import java.util.HashMap;
import java.util.Map;
/**
* 141. Linked List Cycle
Given a linked list, determine if it has a cycle in it.
Follow up:
Can you solve it without using extra space?
*
*/
public class _141 {
public boolean hasCycle(ListNode head) {
ListNode slow = head, fast = head;
while(fast != null && fast.next != null){
fast = fast.next.next;
slow = slow.next;
if(fast == slow) return true;
}
return false;
}
public boolean hasCycle_using_hashtable(ListNode head) {
Map<ListNode, Boolean> visited = new HashMap();
ListNode temp = head;
while(temp != null){
if(visited.containsKey(temp)) return true;
visited.put(temp, true);
temp = temp.next;
}
return false;
}
}