forked from doocs/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution.js
40 lines (37 loc) · 834 Bytes
/
Solution.js
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
/**
* // Definition for a Node.
* function Node(val, next, random) {
* this.val = val;
* this.next = next;
* this.random = random;
* };
*/
/**
* @param {Node} head
* @return {Node}
*/
var copyRandomList = function (head) {
if (head == null) {
return null;
}
let cur = head;
while (cur != null) {
let node = new Node(cur.val, cur.next);
cur.next = node;
cur = node.next;
}
cur = head;
while (cur != null) {
cur.next.random = cur.random == null ? null : cur.random.next;
cur = cur.next.next;
}
let copy = head.next;
cur = head;
while (cur != null) {
let next = cur.next;
cur.next = next.next;
next.next = next.next == null ? null : next.next.next;
cur = cur.next;
}
return copy;
};