[Leetcode] clone graph solution report

Source: Internet
Author: User

[Question]

Clone an undirected graph. each node in the graph containslabelAnd a list of itsneighbors.


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

  1. First node is labeled0. Connect Node0To both nodes1And2.
  2. Second node is labeled1. Connect Node1To Node2.
  3. Third node is labeled2. Connect Node2To Node2(Itself), thus forming a self-cycle.

Visually, the graph looks like the following:

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

[Idea]

This question is mainly about the application of data structures. A queue is used to store unaccessed nodes in the graph, and a map is used to store new cloned nodes. For nodes in the queue, access the neighbor. If the neighbor has been cloned, you only need to maintain the Neighbor Relationship Between the clone nodes. If the neighbor has not been cloned, A new node is required as its clone, and the cloned neighbor relationship is maintained.

[Java code]

/*** Definition for undirected graph. * class undirectedgraphnode {* int label; * List <undirectedgraphnode> neighbors; * undirectedgraphnode (int x) {label = x; neighbors = new arraylist <undirectedgraphnode> ();}*}; */public class solution {public undirectedgraphnode clonegraph (undirectedgraphnode node) {If (node = NULL) return NULL; undirectedgraphnode clone = new undirectedgraphnode (node. l Abel); // use a map to save the cloned new node hashmap <integer, undirectedgraphnode> map = new hashmap <integer, undirectedgraphnode> (); map. put (node. label, clone); // use a queue to save the unaccessed node queue list <undirectedgraphnode> queue = new queue list <undirectedgraphnode> (); queue. add (node); While (! Queue. isempty () {undirectedgraphnode originalnode = queue. remove (); undirectedgraphnode clonenode = map. get (originalnode. label); For (INT I = 0; I <originalnode. neighbors. size (); I ++) {undirectedgraphnode neighbor = originalnode. neighbors. get (I); // If the neighbor node has been cloned if (map. get (neighbor. label )! = NULL) {clonenode. neighbors. add (map. get (neighbor. label); continue;} // put this neighbor into the queue. add (neighbor); // clone the neighbor node undirectedgraphnode newnode = new undirectedgraphnode (neighbor. label); // Add the new node to map. put (neighbor. label, newnode); // Add the new node to the clonenode In the neighbor set. neighbors. add (newnode) ;}} return clone ;}}


[Leetcode] clone graph solution report

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.