前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Leetcode: Clone Graph

Leetcode: Clone Graph

作者头像
卡尔曼和玻尔兹曼谁曼
发布2019-01-22 11:20:02
5200
发布2019-01-22 11:20:02
举报

Clone an undirected graph. Each node in the graph contains a label and a list of its neighbors.

OJ’s undirected graph serialization: Nodes are labeled uniquely.

We use # as a separator for each node, and , as a separator for node label and each neighbor of the node. As an example, consider the serialized graph {0,1,2#1,2#2,2}.

The graph has a total of three nodes, and therefore contains three parts as separated by #.

First node is labeled as 0. Connect node 0 to both nodes 1 and 2. Second node is labeled as 1. Connect node 1 to node 2. Third node is labeled as 2. Connect node 2 to node 2 (itself), thus forming a self-cycle. Visually, the graph looks like the following:

   1
  / \
 /   \
0 --- 2
     / \
     \_/

题目要求克隆图,采用深度优先或者广度优先进行遍历。使用一个Map存储原始节点和克隆以后的节点。

参考代码(使用深度优先遍历):

/**
 * Definition for undirected graph.
 * struct UndirectedGraphNode {
 *     int label;
 *     vector<UndirectedGraphNode*> neighbors;
 *     UndirectedGraphNode(int x) : label(x) {};
 * };
 */
class Solution 
{
public:
    UndirectedGraphNode* cloneGraph(UndirectedGraphNode* node) 
    {
        if (node == nullptr)    return nullptr;

        // map的key为原始节点,value为拷贝的节点
        unordered_map<UndirectedGraphNode*, UndirectedGraphNode*> copyMap;
        // 完成给定节点的图的拷贝工作
        clone(node, copyMap);

        return copyMap[node];
    }
private:
    static UndirectedGraphNode* clone(UndirectedGraphNode* node, unordered_map<UndirectedGraphNode*, UndirectedGraphNode*> &copyMap)
    {
        // 如果该节点已经拷贝过,直接返回该节点的拷贝
        if (copyMap.find(node) != copyMap.end())  return copyMap[node];

        // 否则,拷贝该节点及其相邻节点
        UndirectedGraphNode* copiedNode = new UndirectedGraphNode(node->label);
        copyMap[node] = copiedNode;
        for (auto neighborNode : node->neighbors)
            copiedNode->neighbors.push_back(clone(neighborNode, copyMap));

        return copiedNode;
    }
};
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2015年09月03日,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档