-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFlatten A Linked List
70 lines (62 loc) · 1.21 KB
/
Flatten A Linked List
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
63
64
65
66
67
68
69
70
#include<bits/stdc++.h>
/*
* Definition for linked list.
* class Node {
* public:
* int data;
* Node *next;
* Node *child;
* Node() : data(0), next(nullptr), child(nullptr){};
* Node(int x) : data(x), next(nullptr), child(nullptr) {}
* Node(int x, Node *next, Node *child) : data(x), next(next), child(child) {}
* };
*/
Node* merge(Node* node1, Node* node2)
{
if(!node1 && !node2) return NULL;
if(!node1) return node2;
if(!node2) return node1;
Node* head=NULL;
Node* temp=NULL;
if(node1->data<=node2->data){
head=node1;
node1=node1->child;
temp=head;
}
else{
head=node2;
node2=node2->child;
temp=head;
}
while(node1 && node2){
if(node1->data<=node2->data){
temp->child=node1;
node1=node1->child;
temp=temp->child;
}
else{
temp->child=node2;
node2=node2->child;
temp=temp->child;
}
}
if(node1) temp->child=node1;
if(node2) temp->child=node2;
return head;
}
Node* flattenLinkedList(Node* head)
{
if(!head || head->next==NULL) return head;
Node* head1=head;
Node* head2=head->next;
while(head2){
head1=merge(head1,head2);
head2=head2->next;
}
Node* node=head1;
while(node){
node->next=NULL;
node=node->child;
}
return head1;
}