-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path05_linked_list_cycle.py
67 lines (46 loc) · 1.31 KB
/
05_linked_list_cycle.py
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
class Node:
def __init__(self, data):
self.data = data
self.next = None
class SinglyLinkedList:
def __init__(self):
self.head = None
def append(self, data):
new_node = Node(data)
if self.head is None:
self.head = new_node
return
last_node = self.head
while last_node.next:
last_node = last_node.next
last_node.next = new_node
def print_list(self):
cur_node = self.head
while cur_node:
print(cur_node.data)
cur_node = cur_node.next
def hasCycle(self, pos):
slow, fast = self.head, self.head
node = self.head
for _ in range(pos):
node = node.next
# Connect the last node to the pos node
last_node = llist.head
while last_node.next:
last_node = last_node.next
last_node.next = node
while fast and fast.next:
slow = slow.next
fast = fast.next.next
if slow == fast:
return True
return False
if __name__ == "__main__":
llist = SinglyLinkedList()
llist.append(1)
llist.append(2)
llist.append(0)
llist.append(-4)
llist.print_list()
print("\n")
print(llist.hasCycle(1))