-
Notifications
You must be signed in to change notification settings - Fork 2.3k
/
0133-clone-graph.cpp
83 lines (71 loc) · 1.88 KB
/
0133-clone-graph.cpp
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/*
Given ref of a node in connected undirected graph, return deep copy
Both BFS & DFS work, map original node to its copy
Time: O(m + n)
Space: O(n)
*/
/*
// Definition for a Node.
class Node {
public:
int val;
vector<Node*> neighbors;
Node() {
val = 0;
neighbors = vector<Node*>();
}
Node(int _val) {
val = _val;
neighbors = vector<Node*>();
}
Node(int _val, vector<Node*> _neighbors) {
val = _val;
neighbors = _neighbors;
}
};
*/
// class Solution {
// public:
// Node* cloneGraph(Node* node) {
// if (node == NULL) {
// return NULL;
// }
// if (m.find(node) == m.end()) {
// m[node] = new Node(node->val);
// for (int i = 0; i < node->neighbors.size(); i++) {
// Node* neighbor = node->neighbors[i];
// m[node]->neighbors.push_back(cloneGraph(neighbor));
// }
// }
// return m[node];
// }
// private:
// unordered_map<Node*, Node*> m;
// };
class Solution {
public:
Node* cloneGraph(Node* node) {
if (node == NULL) {
return NULL;
}
Node* copy = new Node(node->val);
m[node] = copy;
queue<Node*> q;
q.push(node);
while (!q.empty()) {
Node* curr = q.front();
q.pop();
for (int i = 0; i < curr->neighbors.size(); i++) {
Node* neighbor = curr->neighbors[i];
if (m.find(neighbor) == m.end()) {
m[neighbor] = new Node(neighbor->val);
q.push(neighbor);
}
m[curr]->neighbors.push_back(m[neighbor]);
}
}
return copy;
}
private:
unordered_map<Node*, Node*> m;
};