-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path138_copyRandomList.py
More file actions
36 lines (32 loc) · 973 Bytes
/
138_copyRandomList.py
File metadata and controls
36 lines (32 loc) · 973 Bytes
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
"""
# 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 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 None:
return None
arr = []
copy_arr = []
while head is not None:
last = head
arr.append(last)
head = head.next
last.next = Node(last.val)
copy_arr.append(last.next)
for node in arr:
if node.random is None:
continue
node.next.random = node.random.next
for i in range(len(copy_arr) - 1):
copy_arr[i].next = copy_arr[i + 1]
return copy_arr[0]