-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathclone-graph.py
61 lines (46 loc) · 1.61 KB
/
clone-graph.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
61
# Definition for a undirected graph node
# class UndirectedGraphNode:
# def __init__(self, x):
# self.label = x
# self.neighbors = []
class SolutionOldInput:
# @param node, a undirected graph node
# @return a undirected graph node
def cloneGraph(self, node):
if node is None:
return
head = UndirectedGraphNode(node.label)
stack = [node]
copy_map = {node: head}
while len(stack):
cur_node = stack.pop()
cur_node_copy = copy_map[cur_node]
for neigh in cur_node.neighbors:
if neigh not in copy_map:
neigh_copy = UndirectedGraphNode(neigh.label)
copy_map[neigh] = neigh_copy
stack.append(neigh)
cur_node_copy.neighbors.append(copy_map[neigh])
return copy_map[node]
"""
# Definition for a Node.
class Node:
def __init__(self, val = 0, neighbors = None):
self.val = val
self.neighbors = neighbors if neighbors is not None else []
"""
class Solution:
def cloneGraph(self, node: 'Node') -> 'Node':
if not node:
return None
cloned_root = Node(node.val)
stack = [node]
seen = {cloned_root.val: cloned_root}
while stack:
node = stack.pop()
for neigh_node in node.neighbors:
if neigh_node.val not in seen:
stack.append(neigh_node)
seen[neigh_node.val] = Node(neigh_node.val)
seen[node.val].neighbors.append(seen[neigh_node.val])
return cloned_root