133. 克隆图

在这里插入图片描述

/*
// Definition for a Node.
class Node {
    public int val;
    public List<Node> neighbors;
    public Node() {
        val = 0;
        neighbors = new ArrayList<Node>();
    }
    public Node(int _val) {
        val = _val;
        neighbors = new ArrayList<Node>();
    }
    public Node(int _val, ArrayList<Node> _neighbors) {
        val = _val;
        neighbors = _neighbors;
    }
}
*/

class Solution {
    public Node cloneGraph(Node node) {
        if(node==null){
            return null;
        }

        Map<Node,Node> map=new HashMap<Node,Node>();
        ArrayList<Node> nodes=getNodes(node);
        //copy node
        for(Node n:nodes){
            map.put(n,new Node(n.val));
        }
        //copy neighbors
        for(Node n:nodes){
            Node newNode=map.get(n);
            for(Node neighbor:n.neighbors){
                Node newNeighbor=map.get(neighbor);
                newNode.neighbors.add(newNeighbor);
            }
        }

        return map.get(node);
    }


    public ArrayList<Node> getNodes(Node node){
        //这里使用队列queue和set实现链表
        Queue<Node> queue=new LinkedList<Node>();
        HashSet<Node> set=new HashSet<Node>();

        queue.add(node);
        set.add(node);
        while(!queue.isEmpty()){
            Node head=queue.poll();
            for(Node neighbor:head.neighbors){
                if(!set.contains(neighbor)){
                    set.add(neighbor);
                    queue.add(neighbor);
                }
            }
        }
        return new ArrayList(set);
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值