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

Problem Copy List with Random Pointer

时间:2014-07-07 16:19:01      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   color   strong   io   

Problem Description:

A linked list is given such that each node contains an additional random pointer which could point to any node in the list or null.

Return a deep copy of the list.

 

 Solution:
 1     public RandomListNode copyRandomList(RandomListNode head) {
 2        Map<RandomListNode, RandomListNode> map = new HashMap<RandomListNode, RandomListNode>();
 3 
 4         if (head == null) return null;
 5 
 6         RandomListNode q = head;
 7         RandomListNode p = null;
 8         while (q != null ) {
 9             p = new RandomListNode(q.label);
10             map.put(q, p);
11             q = q.next;
12         } 
13 
14         q = head;
15         RandomListNode root = map.get(head);
16         while (q != null) {
17             p = map.get(q);
18             p.next = map.get(q.next);
19             p.random = map.get(q.random);
20             q = q.next;
21         }
22 
23         return root;
24     }

 

Problem Copy List with Random Pointer,布布扣,bubuko.com

Problem Copy List with Random Pointer

标签:des   style   blog   color   strong   io   

原文地址:http://www.cnblogs.com/liew/p/3815073.html

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