Clone Graph——LeetCode

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 #.

  1. First node is labeled as 0. Connect node 0 to both nodes 1 and 2.
  2. Second node is labeled as 1. Connect node 1 to node 2.
  3. 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
         /          \_/

题目大意是给定一个无向图,可能有环,实现一个方法,deep clone这个图。

我的做法是采用BFS,从一个点开始,遍历它的邻居,然后加入队列,当队列非空,循环遍历,因为label是唯一的,采用map保存新生成的node,用label作为key。另外使用visited数组保存是否加入过队列,以免重复遍历。

Talk is cheap>>

  public UndirectedGraphNode cloneGraph(UndirectedGraphNode root) {
        HashSet<Integer> visited = new HashSet<>();
        if (root==null)
            return null;
        List<UndirectedGraphNode> queue = new ArrayList<>();
        HashMap<Integer,UndirectedGraphNode> map = new HashMap<>();
        queue.add(root);
        while (!queue.isEmpty()) {
            UndirectedGraphNode node = queue.get(0);
            if (map.get(node.label)==null) {
                map.put(node.label, new UndirectedGraphNode(node.label));
            }
            UndirectedGraphNode tmp = map.get(node.label);
            queue.remove(0);

            for (int i = 0; i < node.neighbors.size(); i++) {
                int key = node.neighbors.get(i).label;
                if (map.get(key)==null){
                    map.put(key,new UndirectedGraphNode(key));
                }
                tmp.neighbors.add(map.get(key));
                visited.add(node.label);
                if (!visited.contains(key)){
                    queue.add(node.neighbors.get(i));
                    visited.add(key);
                }
            }
        }
        return map.get(root.label);
    }
时间: 2024-10-04 05:43:55

Clone Graph——LeetCode的相关文章

Clone Graph leetcode java(DFS and BFS 基础)

题目: 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 n

Clone Graph -- leetcode

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 neigh

133. Clone Graph Leetcode Python

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 neigh

Clone Graph [leetcode] dfs和bfs

变量unordered_map<UndirectedGraphNode *, UndirectedGraphNode *> cloneMap; 因为会有环,所以需要cloneMap记录旧的节点和新的节点对. 还需要一个visited记录已经访问过的节点,可以和cloneMap合并在一起. DFS: 在克隆某个Node时,首先放入map中. 之后遍历neighbors.如果neighbors不在map里,即没有访问过,则递归调用cloneGraph函数. 最后返回克隆过的节点. Undirect

【leetcode】Clone Graph(python)

类似于二叉树的三种遍历,我们可以基于遍历的模板做很多额外的事情,图的两种遍历,深度和广度模板同样也可以做很多额外的事情,这里举例利用深度优先遍历的模板来进行复制,深度优先中,我们先访问第一个结点,接着访问第一个邻接点,再访问邻节点的邻节点.... class Solution: # @param node, a undirected graph node # @return a undirected graph node def cloneGraph(self, node): if None =

leetcode题目:Clone Graph

题目: 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 n

【leetcode】Clone Graph

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 neigh

LeetCode: Clone Graph [133]

[题目] 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

leetcode -day11 Clone Graph &amp; Palindrome Partitioning I II

 1.Clone Graph 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 lab