-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathCopyList.cpp
62 lines (49 loc) · 1.4 KB
/
CopyList.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
57
58
59
60
61
62
/*
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.
Example
Given list
1 -> 2 -> 3
with random pointers going from
1 -> 3
2 -> 1
3 -> 1
You should return a deep copy of the list. The returned answer should not contain the same node as the original list, but a copy of them. The pointers in the returned list should not link to any node in the original input list.
LINK: https://www.interviewbit.com/problems/copy-list/
*/
/**
* Definition for singly-linked list.
* struct RandomListNode {
* int label;
* RandomListNode *next, *random;
* RandomListNode(int x) : label(x), next(NULL), random(NULL) {}
* };
*/
RandomListNode* Solution::copyRandomList(RandomListNode* A)
{
RandomListNode *head = new RandomListNode(0);
RandomListNode *temp1 = A, *temp2 = head;
while(temp1)
{
temp2->label = temp1->label;
temp2->random = temp1->random;
RandomListNode *next = temp1->next;
temp1->next = temp2;
temp1 = next;
if(temp1)
{
temp2->next = new RandomListNode(0);
temp2 = temp2->next;
}
}
temp2 = head;
while(temp2)
{
if(temp2->random)
{
temp2->random = temp2->random->next;
}
temp2 = temp2->next;
}
return head;
}