-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path138.java
47 lines (41 loc) · 987 Bytes
/
138.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
// Definition for a Node.
class Node {
int val;
Node next;
Node random;
public Node(int val) {
this.val = val;
this.next = null;
this.random = null;
}
}
*/
class Solution {
public Node copyRandomList(Node head) {
if(head==null){
return head;
}
// 第一次遍历,存入map
Map<Node,Node> map = new HashMap<>();
Node cur = head;
while(cur!=null){
Node node = new Node(cur.val);
map.put(cur,node);
cur = cur.next;
}
// 第二次遍历,给value的两个指针赋值
cur = head;
while(cur!=null){
Node node = map.get(cur);
if(cur.next!=null){
node.next = map.get(cur.next);
}
if(cur.random!=null){
node.random = map.get(cur.random);
}
cur = cur.next;
}
return map.get(head);
}
}