[LeetCode] Clone Graph
This problem is an application of graph traversal, which has two systematic methods: Bread-First Search (BFS) and Depth-First Search (DFS). In the following, I am going to assume that you are familiar with them and just focus on what I think is the most tricky part of this problem, that is, what else is needed beyond graph traversal to clone a graph?
In order to clone a graph, you need to have a copy of each node in the original graph. Well, you may not have too many ideas about it. Let's do an example.
Suppose we are given a graph {0, 1 # 1, 0}
. We know that the graph has two nodes 0
and1
and they are connected to each other.
We now start from 0
. We make a copy of 0
. Then we check 0
's neighbors and we see 1
. We make a copy of 1
and we add the copy to the neighbors of the copy of 0
. Now the cloned graph is {0 (copy), 1 (copy)}
. Then we visit 1
. We make a copy of 1
... well, wait, why do we make another copy of it? We already have one! Note that if you make a new copy of the node, these copies are not the same and the graph structure will be wrong! This is just what I mean by "the most tricky part of this problem". In fact, we need to maintain a mapping from each node to its copy. If the node has an existed copy, we simply use it. So in the above example, the remaining process is that we visit the copy of 1
and add the copy of 0
to its neighbors and the cloned graph is eventually {0 (copy), 1 (copy) # 1 (copy), 0 (copy)}
.
Note that the above process uses BFS. Of course, you can use DFS. The key is the node-copy mapping, anyway.
BFS
1 class Solution { 2 public: 3 UndirectedGraphNode *cloneGraph(UndirectedGraphNode *node) { 4 if (!node) return NULL; 5 UndirectedGraphNode* copy = new UndirectedGraphNode(node -> label); 6 mp[node] = copy; 7 queue<UndirectedGraphNode*> toVisit; 8 toVisit.push(node); 9 while (!toVisit.empty()) { 10 UndirectedGraphNode* cur = toVisit.front(); 11 toVisit.pop(); 12 for (int i = 0; i < (int)cur -> neighbors.size(); i++) { 13 UndirectedGraphNode* neigh = cur -> neighbors[i]; 14 if (mp.find(neigh) == mp.end()) { 15 UndirectedGraphNode* neigh_copy = new UndirectedGraphNode(neigh -> label); 16 mp[neigh] = neigh_copy; 17 toVisit.push(neigh); 18 } 19 mp[cur] -> neighbors.push_back(mp[neigh]); 20 } 21 } 22 return copy; 23 } 24 private: 25 unordered_map<UndirectedGraphNode*, UndirectedGraphNode*> mp; 26 };
DFS
This very succinct DFS code is taken from this post.
1 class Solution { 2 public: 3 UndirectedGraphNode *cloneGraph(UndirectedGraphNode *node) { 4 if (!node) return NULL; 5 if (mp.find(node) == mp.end()) { 6 mp[node] = new UndirectedGraphNode(node -> label); 7 for (UndirectedGraphNode* neigh : node -> neighbors) 8 mp[node] -> neighbors.push_back(cloneGraph(neigh)); 9 } 10 return mp[node]; 11 } 12 private: 13 unordered_map<UndirectedGraphNode*, UndirectedGraphNode*> mp; 14 };
If you want to learn more about this problem, you may refer to this article.
【推荐】还在用 ECharts 开发大屏?试试这款永久免费的开源 BI 工具!
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 理解Rust引用及其生命周期标识(下)
· 从二进制到误差:逐行拆解C语言浮点运算中的4008175468544之谜
· .NET制作智能桌面机器人:结合BotSharp智能体框架开发语音交互
· 软件产品开发中常见的10个问题及处理方法
· .NET 原生驾驭 AI 新基建实战系列:向量数据库的应用与畅想
· 2025成都.NET开发者Connect圆满结束
· 后端思维之高并发处理方案
· 在 VS Code 中,一键安装 MCP Server!
· langchain0.3教程:从0到1打造一个智能聊天机器人
· 千万级大表的优化技巧