-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcopy-list-with-random-pointer.py
58 lines (54 loc) · 1.53 KB
/
copy-list-with-random-pointer.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
# Definition for singly-linked list with a random pointer.
class RandomListNode(object):
def __init__(self, x):
self.label = x
self.next = None
self.random = None
class Solution(object):
def copyRandomList(self, head):
"""
:type head: RandomListNode
:rtype: RandomListNode
"""
table = {}
p = head
dummy = RandomListNode(0)
current = dummy
while p is not None:
current.next = RandomListNode(p.label)
table[p] = current.next
p = p.next
current = current.next
p = head
current = dummy
while p is not None:
if p.random:
current.next.random = table[p.random]
p = p.next
current = current.next
return dummy.next
class Solution2(object):
def copyRandomList(self, head):
"""
:type head: RandomListNode
:rtype: RandomListNode
"""
p = head
while p is not None:
next = p.next
copy = RandomListNode(p.label)
p.next = copy
copy.next = next
p = next
p = head
while p is not None:
p.next.random = p.random.next if p.random else None
p = p.next.next
p = head
copy_head = p.next if p else None
while p is not None:
copy = p.next
p.next = copy.next
p = p.next
copy.next = p.next if p else None
return copy_head