-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmerge_two_linked_list.cpp
67 lines (54 loc) · 1.28 KB
/
merge_two_linked_list.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
63
64
65
66
67
//Merge two linked lists
//https://ide.geeksforgeeks.org/3fg8sdVw9w
#include<bits/stdc++.h>
using namespace std;
struct Node{
int data;
struct Node* next;
};
struct Node* head;
//createNode
struct Node* createNode(int data){
struct Node* tmp = new Node;
tmp->data = data;
tmp->next = NULL;
return tmp;
}
//printLL
void printLL(struct Node* head){
if(head == NULL) return;
while(head != NULL){
cout<<head->data<<" ";
head = head->next;
}
cout<<"\n";
}
struct Node* mergeLL(struct Node* A, struct Node* B){
struct Node* dummy = createNode(0);
struct Node* temp = dummy;
while(A && B){
if(A->data <= B->data){
temp->next = A;
temp = temp->next;
A = A->next;
}
else{
temp->next = B;
temp = temp->next;
B = B->next;
}
}
if(!A) temp->next = B;
if(!B) temp->next = A;
return dummy->next;
}
int main(){
struct Node* head1 = createNode(2);
head1->next = createNode(4);
head1->next->next = createNode(6);
struct Node *head2 = createNode(1);
head2->next = createNode(3);
head2->next->next = createNode(5);
struct Node* head = mergeLL(head1, head2);
printLL(head);
}