首页 > 其他 > 详细

Problem Copy List with Random Pointer

时间:2014-07-07 16:17:56      阅读:247      评论:0      收藏:0      [点我收藏+]

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

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!