-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path142.py
50 lines (38 loc) · 1.08 KB
/
142.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
# Definition for singly-linked list.
# class ListNode:
# def __init__(self, x):
# self.val = x
# self.next = None
class Solution:
# @param head, a ListNode
# @return a list node
def detectCycle(self, head):
if head == None:
return None
p = head
markval = float('inf')
while p.next != None:
if p.val == markval:
return p
else:
p.val = markval
p = p.next
return None
# new solution two pointers
def detectCycle(self, head):
if head == None:
return None
fast = head
slow = head
while fast!= None and fast.next != None:
fast = fast.next.next
slow = slow.next
if fast == slow:
break
if fast == None or fast.next == None:
return None
slow = head
while slow != fast:
fast = fast.next
slow = slow.next
return slow