-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy path9b_Random_LinkedList.cpp
56 lines (52 loc) · 1.31 KB
/
9b_Random_LinkedList.cpp
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
48
49
50
51
52
53
54
55
56
/*
2019-11.4
复制带有随机指针节点的链表
时间O(N),空间O(1)
注意LeetCode有输入为空的Bug
class Node {
public:
int val;
Node* next;
Node* random;
Node() {}
Node(int _val, Node* _next, Node* _random) {
val = _val;
next = _next;
random = _random;
}
};
*/
class Solution {
public:
Node* copyRandomList(Node* head) {
if (head == NULL)
return NULL;
Node* cur = head;
while (cur)
{
Node* node = new Node(cur->val);
node->next = cur->next;
cur->next = node;
cur = cur->next->next;
}
cur = head;
Node* cur2 = NULL;
while (cur) // Random的修改
{
cur2 = cur->next; // 注意步骤不能反
cur2->random = cur->random==NULL ? NULL : cur->random->next;
cur = cur->next->next;
}
cur2 = head->next;
// cur = NULL;
Node* hhead = head;
while (hhead->next)
{
cur = hhead->next;
hhead->next = cur->next; // head->cur->...
hhead = cur;
// cur = cur->next;
}
return cur2;
}
};