-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path133_clone-graph.py
32 lines (25 loc) · 911 Bytes
/
133_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
# https://leetcode.com/problems/clone-graph/
"""
# 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 []
"""
from queue import Queue
class Solution:
def cloneGraph(self, node: 'Node') -> 'Node':
if not node:
return None
q = Queue()
q.put(node)
node_dict = {node.val:Node(node.val)}
while q.qsize() > 0:
n = q.get()
n_copy = node_dict[n.val]
for neighbor_n in n.neighbors:
if neighbor_n.val not in node_dict:
node_dict[neighbor_n.val] = Node(neighbor_n.val)
q.put(neighbor_n)
n_copy.neighbors.append(node_dict[neighbor_n.val])
return node_dict[node.val]