This repository was archived by the owner on May 16, 2021. It is now read-only.
forked from zhuli19901106/leetcode-zhuli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclone-graph_1_AC.cpp
61 lines (55 loc) · 1.53 KB
/
clone-graph_1_AC.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
/**
* Definition for undirected graph.
* struct UndirectedGraphNode {
* int label;
* vector<UndirectedGraphNode *> neighbors;
* UndirectedGraphNode(int x) : label(x) {};
* };
*/
#include <unordered_map>
#include <unordered_set>
#include <vector>
using std::unordered_map;
using std::unordered_set;
using std::vector;
typedef UndirectedGraphNode UGN;
class Solution {
public:
UGN *cloneGraph(UGN *node) {
if (node == NULL) {
return NULL;
}
unordered_map<UGN *, int> indices;
vector<UGN *> nodes;
unordered_set<UGN *> visited;
dfs(node, indices, nodes, visited);
UGN *new_node = nodes[0];
indices.clear();
nodes.clear();
visited.clear();
return new_node;
}
private:
void dfs(UGN *node, unordered_map<UGN *, int> &indices,
vector<UGN *> &nodes, unordered_set<UGN *> &visited) {
if (visited.find(node) != visited.end()) {
return;
} else {
visited.insert(node);
}
int idx = nodes.size();
indices[node] = idx;
nodes.push_back(new UGN(node->label));
UGN *node1;
int i;
int nc = node->neighbors.size();
for (i = 0; i < nc; ++i) {
node1 = node->neighbors[i];
dfs(node1, indices, nodes, visited);
}
for (i = 0; i < nc; ++i) {
node1 = node->neighbors[i];
nodes[idx]->neighbors.push_back(nodes[indices[node1]]);
}
}
};