Cover image for Interview Classic 150 Questions P133 Clone Graph

Interview Classic 150 Questions P133 Clone Graph


Timeline

Timeline

2025-11-03

init

BFS

Title:

Using a hash map to map original nodes and clone nodes, then BFS fills the visited hash map while also filling the clone nodes. It is indeed quite clever.

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
/*
// Definition for a Node.
*/
#include <vector>
#include <unordered_map>
#include <queue>

using std::queue;
using std::unordered_map;
using std::vector;

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 {
private:
unordered_map<Node *, Node *> visited;

public:
// Given a reference of a node in a connected undirected graph, return a deep copy (clone) of the graph.
Node *cloneGraph(Node *node)
{
if (node == nullptr) {
return nullptr;
}

unordered_map<Node *, Node *> visited;
queue<Node *> q;
Node *cur, *cloneNode;

cloneNode = new Node(node->val);
visited[node] = cloneNode;
q.push(node);

while (!q.empty()) {
cur = q.front();
q.pop();
for (Node *neighbor : cur->neighbors) {
if (visited.count(neighbor) == 0) { // Not visited
// Create the clone node corresponding to this node
visited[neighbor] = new Node(neighbor->val);
q.push(neighbor);
}
// Add the newly created clone node or the already visited node to the neighbor of the clone node corresponding to the front node of the queue
visited[cur]->neighbors.push_back(visited[neighbor]);
}
}

return cloneNode;
}
};