码迷,mamicode.com
首页 > 其他好文 > 详细

138. Copy List with Random Pointer

时间:2017-10-10 09:56:57      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:get   and   dom   copy   log   div   null   with   put   

public class Solution {
    public RandomListNode copyRandomList(RandomListNode head) {
        Map<RandomListNode, RandomListNode> map=new HashMap<RandomListNode,RandomListNode>();
        RandomListNode p=new RandomListNode(0);
        p.next=head;
        RandomListNode res=new RandomListNode(0);
        RandomListNode q=res;
        while(p!=null)
        {
            if(p.next!=null)
            {
                if(!map.containsKey(p.next))
                    map.put(p.next, new RandomListNode(p.next.label));
                q.next=map.get(p.next);
            }
            if(p.random!=null)
            {
                if(!map.containsKey(p.random))
                    map.put(p.random,new RandomListNode(p.random.label));
                q.random=map.get(p.random);
            }
            p=p.next;
            q=q.next;
        }
        return res.next;
    }
}

  

138. Copy List with Random Pointer

标签:get   and   dom   copy   log   div   null   with   put   

原文地址:http://www.cnblogs.com/asuran/p/7643766.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!