-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path138CopyListwithRandomPointer.py
60 lines (48 loc) · 1.21 KB
/
138CopyListwithRandomPointer.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
# Definition for a Node.
class Node:
def __init__(self, x, next=None, random=None):
self.val = int(x)
self.next = next
self.random = random
class Solution(object):
def copyRandomList(self, head):
"""
:type head: Node
:rtype: Node
[[3,null],[2,0],[1,null]]
"""
cacheMap = {}
curr = head
newCurr = None
last = None
newHead = None
while curr:
val = curr.val
newCurr = Node(val)
if last:
last.next = newCurr
else:
newHead = newCurr
cacheMap[curr] = newCurr
last = newCurr
curr = curr.next
curr = head
newCurr = newHead
while curr:
random = curr.random
mirrorRandom = None
if random:
mirrorRandom = cacheMap[random]
newCurr.random = mirrorRandom
curr = curr.next
newCurr = newCurr.next
return newHead
a = Node(3)
b = Node(2)
c = Node(1)
a.next = b
b.next = c
b.random = a
sol = Solution()
res = sol.copyRandomList(a)
print(res)