复杂链表的复制

请实现 copyRandomList 函数,复制一个复杂链表。在复杂链表中,每个节点除了有一个 next 指针指向下一个节点,还有一个 random 指针指向链表中的任意节点或者 null。

 

示例 1:

 

输入:head = [[7,null],[13,0],[11,4],[10,2],[1,0]]
输出:[[7,null],[13,0],[11,4],[10,2],[1,0]]

示例 2:

 

 

 
输入:head = [[1,1],[2,1]]
输出:[[1,1],[2,1]]

示例 3:

 

输入:head = [[3,null],[3,0],[3,null]]
输出:[[3,null],[3,0],[3,null]]

示例 4:

输入:head = []
输出:[]
解释:给定的链表为空(空指针),因此返回 null
 1 /*
 2 // Definition for a Node.
 3 class Node {
 4     int val;
 5     Node next;
 6     Node random;
 7 
 8     public Node(int val) {
 9         this.val = val;
10         this.next = null;
11         this.random = null;
12     }
13 }
14 */
15 class Solution {
16     public Node copyRandomList(Node head) {
17         Map<Node,Node> map=new HashMap<Node,Node>();
18         Node cur = head;
19         while(cur!=null){
20             map.put(cur,new Node(cur.val));
21             cur=cur.next;
22         }
23         cur=head;
24         while(cur!=null){
25             map.get(cur).next=map.get(cur.next);
26             map.get(cur).random=map.get(cur.random);
27             cur=cur.next;
28         }
29         return map.get(head);
30     }
31 }

 

posted @ 2020-08-15 11:59  王余阳  阅读(149)  评论(0)    收藏  举报