-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path00141-linked_list_cycle.py
64 lines (49 loc) · 1.42 KB
/
00141-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
# 141: Linked List Cycle
# https://leetcode.com/problems/linked-list-cycle/
class ListNode:
def __init__(self, x: int):
self.val = x
self.next = None
class LinkedList:
def __init__(self) -> None:
self.head = None
def Input(self, inputs: list[int]):
for i in inputs:
node = ListNode(i)
if self.head:
tail = self.head
while tail.next != None: tail = tail.next
tail.next = node
else:
self.head = node
def Output(self, head: ListNode):
while (head != None):
print(head.val, "-> ", end='')
head = head.next
print("NULL")
def createLoop(self, p):
if self.head.next==None: return
if p==-1: return
tail, node = self.head, self.head
while tail.next!=None: tail = tail.next
for _ in range(p): node = node.next
tail.next = node
class Solution:
# SOLUTION
def hasCycle(self, head: ListNode) -> bool:
slow, fast = head, head
while fast and fast.next:
slow = slow.next
fast = fast.next.next
if slow == fast: return True
return False
if __name__ == "__main__":
o = Solution()
ll = LinkedList()
# INPUT
li = [3,2,0,-4]
ll.Input(li)
ll.createLoop(1)
# OUTPUT
result = o.hasCycle(ll.head)
print(result)