-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCopy List with Random Pointer.py
56 lines (42 loc) · 1.6 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
# https://leetcode.com/problems/copy-list-with-random-pointer
"""
# Definition for a Node.
class Node:
def __init__(self, x: int, next: 'Node' = None, random: 'Node' = None):
self.val = int(x)
self.next = next
self.random = random
"""
class Solution:
def copyRandomList(self, head: 'Node') -> 'Node':
# If head is empty, return None
if head is None:
return None
# Create a new head node
headClone = Node(head.val)
# Create a dictionary and counter
nodesDict = {head: headClone}
# Iterate original link list
oldClone = headClone
currNode = head.next
while currNode != None:
# Create a new clone node
newClone = Node(currNode.val)
# Connect previous clone node to new clone
oldClone.next = newClone
oldClone = oldClone.next
# Add newClone to dictionary
nodesDict[currNode] = newClone
# Update currNode
currNode = currNode.next
# Iterate original link list (again) for random pointer
oldClone = headClone
currNode = head
while currNode != None:
# Update "random" pointer in clone link list
if currNode.random in nodesDict:
oldClone.random = nodesDict[currNode.random]
# Update nodes
oldClone = oldClone.next
currNode = currNode.next
return headClone