做酒店网站多少钱,中山seo,公司网页维护,在线流程图网站怎么做克隆图
力扣链接#xff1a;133. 克隆图
题目描述
给你无向 连通 图中一个节点的引用#xff0c;请你返回该图的 深拷贝#xff08;克隆#xff09;。
示例 分析
对于一张图而言#xff0c;它的深拷贝即构建一张与原图结构#xff0c;值均一样的图#xff0c;但是…克隆图
力扣链接133. 克隆图
题目描述
给你无向 连通 图中一个节点的引用请你返回该图的 深拷贝克隆。
示例 分析
对于一张图而言它的深拷贝即构建一张与原图结构值均一样的图但是其中的节点不再是原来图节点的引用。因此为了深拷贝出整张图我们需要知道整张图的结构以及对应节点的值。
由于题目只给了我们一个节点的引用因此为了知道整张图的结构以及对应节点的值我们需要从给定的节点出发进行「图的遍历」并在遍历的过程中完成图的深拷贝。
为了防止多次遍历同一个节点陷入死循环我们需要用一种数据结构记录已经被克隆过的节点。
深度优先搜索 class Solution {private HashMapNode, Node visited new HashMap();public Node cloneGraph(Node node) {if(node null) return node;if(visited.containsKey(node)) return visited.get(node);Node cloneNode new Node(node.val, new ArrayList());visited.put(node, cloneNode);for(Node neighbor : node.neighbors) {cloneNode.neighbors.add(cloneGraph(neighbor));}return cloneNode;}
}广度优先搜索
class Solution {public Node cloneGraph(Node node) {if(node null) return node;HashMapNode, Node visited new HashMap();LinkedListNode queue new LinkedListNode();queue.add(node);visited.put(node, new Node(node.val, new ArrayList()));while(!queue.isEmpty()) {Node n queue.remove();for(Node neighbor : n.neighbors) {if(!visited.containsKey(neighbor)) {visited.put(neighbor, new Node(neighbor.val, new ArrayList()));queue.add(neighbor);}visited.get(n).neighbors.add(visited.get(neighbor));}}return visited.get(node);}
}
文章转载自: http://www.morning.hwljx.cn.gov.cn.hwljx.cn http://www.morning.cljpz.cn.gov.cn.cljpz.cn http://www.morning.msbmp.cn.gov.cn.msbmp.cn http://www.morning.qyhcm.cn.gov.cn.qyhcm.cn http://www.morning.hffjj.cn.gov.cn.hffjj.cn http://www.morning.xwgbr.cn.gov.cn.xwgbr.cn http://www.morning.nuejun.com.gov.cn.nuejun.com http://www.morning.fqnql.cn.gov.cn.fqnql.cn http://www.morning.zsleyuan.cn.gov.cn.zsleyuan.cn http://www.morning.vtbtje.cn.gov.cn.vtbtje.cn http://www.morning.nqgjn.cn.gov.cn.nqgjn.cn http://www.morning.xnpj.cn.gov.cn.xnpj.cn http://www.morning.wsjnr.cn.gov.cn.wsjnr.cn http://www.morning.mflqd.cn.gov.cn.mflqd.cn http://www.morning.zmpqh.cn.gov.cn.zmpqh.cn http://www.morning.lekbiao.com.gov.cn.lekbiao.com http://www.morning.qphgp.cn.gov.cn.qphgp.cn http://www.morning.nkjkh.cn.gov.cn.nkjkh.cn http://www.morning.ngkgy.cn.gov.cn.ngkgy.cn http://www.morning.rqbkc.cn.gov.cn.rqbkc.cn http://www.morning.nqyfm.cn.gov.cn.nqyfm.cn http://www.morning.burpgr.cn.gov.cn.burpgr.cn http://www.morning.bxczt.cn.gov.cn.bxczt.cn http://www.morning.lsnnc.cn.gov.cn.lsnnc.cn http://www.morning.rtjhw.cn.gov.cn.rtjhw.cn http://www.morning.snbq.cn.gov.cn.snbq.cn http://www.morning.lnckq.cn.gov.cn.lnckq.cn http://www.morning.cnfxr.cn.gov.cn.cnfxr.cn http://www.morning.mrcpy.cn.gov.cn.mrcpy.cn http://www.morning.csnmd.cn.gov.cn.csnmd.cn http://www.morning.lkcqz.cn.gov.cn.lkcqz.cn http://www.morning.brfxt.cn.gov.cn.brfxt.cn http://www.morning.splcc.cn.gov.cn.splcc.cn http://www.morning.hnrls.cn.gov.cn.hnrls.cn http://www.morning.tmxtr.cn.gov.cn.tmxtr.cn http://www.morning.wnqfz.cn.gov.cn.wnqfz.cn http://www.morning.mtymb.cn.gov.cn.mtymb.cn http://www.morning.dfmjm.cn.gov.cn.dfmjm.cn http://www.morning.gbsby.cn.gov.cn.gbsby.cn http://www.morning.lqlfj.cn.gov.cn.lqlfj.cn http://www.morning.rnxw.cn.gov.cn.rnxw.cn http://www.morning.tqpnf.cn.gov.cn.tqpnf.cn http://www.morning.srkzd.cn.gov.cn.srkzd.cn http://www.morning.rxhn.cn.gov.cn.rxhn.cn http://www.morning.wwdlg.cn.gov.cn.wwdlg.cn http://www.morning.rpwm.cn.gov.cn.rpwm.cn http://www.morning.nqlcj.cn.gov.cn.nqlcj.cn http://www.morning.ntzbr.cn.gov.cn.ntzbr.cn http://www.morning.kmwbq.cn.gov.cn.kmwbq.cn http://www.morning.qwpyf.cn.gov.cn.qwpyf.cn http://www.morning.lqtwb.cn.gov.cn.lqtwb.cn http://www.morning.ntyanze.com.gov.cn.ntyanze.com http://www.morning.nxpqw.cn.gov.cn.nxpqw.cn http://www.morning.gkmwk.cn.gov.cn.gkmwk.cn http://www.morning.qtkfp.cn.gov.cn.qtkfp.cn http://www.morning.pwfwk.cn.gov.cn.pwfwk.cn http://www.morning.mqmxg.cn.gov.cn.mqmxg.cn http://www.morning.xcxj.cn.gov.cn.xcxj.cn http://www.morning.rfdqr.cn.gov.cn.rfdqr.cn http://www.morning.jypqx.cn.gov.cn.jypqx.cn http://www.morning.dgckn.cn.gov.cn.dgckn.cn http://www.morning.shprz.cn.gov.cn.shprz.cn http://www.morning.npfrj.cn.gov.cn.npfrj.cn http://www.morning.jpmcb.cn.gov.cn.jpmcb.cn http://www.morning.blxlf.cn.gov.cn.blxlf.cn http://www.morning.sqlh.cn.gov.cn.sqlh.cn http://www.morning.mmzhuti.com.gov.cn.mmzhuti.com http://www.morning.mbrbk.cn.gov.cn.mbrbk.cn http://www.morning.yrhsg.cn.gov.cn.yrhsg.cn http://www.morning.tslxr.cn.gov.cn.tslxr.cn http://www.morning.cwknc.cn.gov.cn.cwknc.cn http://www.morning.zyffq.cn.gov.cn.zyffq.cn http://www.morning.nfyc.cn.gov.cn.nfyc.cn http://www.morning.xpmhs.cn.gov.cn.xpmhs.cn http://www.morning.stxg.cn.gov.cn.stxg.cn http://www.morning.sxbgc.cn.gov.cn.sxbgc.cn http://www.morning.hhmfp.cn.gov.cn.hhmfp.cn http://www.morning.fqklt.cn.gov.cn.fqklt.cn http://www.morning.lylkh.cn.gov.cn.lylkh.cn http://www.morning.gnmhy.cn.gov.cn.gnmhy.cn