-
Notifications
You must be signed in to change notification settings - Fork 130
/
Copy pathMerge two sorted LL.cpp
81 lines (67 loc) · 1.83 KB
/
Merge two sorted LL.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
68
69
70
71
72
73
74
75
76
77
/*
Code: Merge Two Sorted LL
Send Feedback
Given two linked lists sorted in increasing order. Merge them in such a way that the result list is also sorted (in increasing order).
Try solving with O(1) auxiliary space (in-place). You just need to return the head of new linked list, don't print the elements.
Input format :
Line 1 : Linked list 1 elements of length n (separated by space and terminated by -1)
Line 2 : Linked list 2 elements of length m (separated by space and terminated by -1)
Output format :
Merged list elements (separated by space)
Constraints :
1 <= n, m <= 10^4
Sample Input :
2 5 8 12 -1
3 6 9 -1
Sample Output :
2 3 5 6 8 9 12
*/
/**********
* Following is the Node class that is already written.
class Node{
public:
int data;
Node *next;
Node(int data){
this -> data = data;
this -> next = NULL;
}
};
*********/
Node* mergeTwoLLs(Node *head1, Node *head2) {
/* Don't write main().
* Don't read input, it is passed as function argument.
* Return output and don't print it.
* Taking input is handled automatically.
*/
Node *fh=NULL, *ft=NULL;
while(head1!=NULL && head2!=NULL){
if(fh== NULL && ft==NULL){
if(head1->data>head2->data){
fh=head2;
ft=head2;
head2=head2->next;
}else{
fh=head1;
ft=head1;
head1=head1->next;
}
}
if(head1->data<head2->data){
ft->next=head1;
ft=ft->next;
head1=head1->next;
}else{
ft->next=head2;
ft=ft->next;
head2=head2->next;
}
}
if(head1!=NULL){
ft->next=head1;
}
if(head2!=NULL){
ft->next=head2;
}
return fh;
}