-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProblem 133
33 lines (32 loc) · 890 Bytes
/
Problem 133
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
//Using the DFS Approach
//It can be done also by using the BFS Approach similary
class Solution {
public:
Node* dfs(Node* cur,unordered_map<Node*,Node*>& mp)
{
vector<Node*> neighbour;
Node* clone=new Node(cur->val);
mp[cur]=clone;
for(auto it:cur->neighbors)
{
if(mp.find(it)!=mp.end()) {
neighbour.push_back(mp[it]);
}
else
neighbour.push_back(dfs(it,mp));
}
clone->neighbors=neighbour;
return clone;
}
Node* cloneGraph(Node* node) {
unordered_map<Node*,Node*> mp;
if(node==NULL)
return NULL;
if(node->neighbors.size()==0)
{
Node* clone= new Node(node->val);
return clone;
}
return dfs(node,mp);
}
};