-
Notifications
You must be signed in to change notification settings - Fork 254
/
Copy path18 Merge LL.c
118 lines (106 loc) · 2.38 KB
/
18 Merge LL.c
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
#include <stdio.h>
#include <stdlib.h>
struct Node
{
int data;
struct Node* next;
}*first=NULL,*second=NULL,*third=NULL;
void Create(int A[], int n)
{
int i;
struct Node* last, * t;
first = (struct Node*)malloc(sizeof(struct Node));
first->data = A[0];
first->next = NULL;
last = first;
for (i = 1; i < n; i++)
{
t = (struct Node*)malloc(sizeof(struct Node));
t->data = A[i];
t->next = NULL;
last->next = t;
last = t;
}
}
void Create2(int A[], int n)
{
int i;
struct Node* last, * t;
second = (struct Node*)malloc(sizeof(struct Node));
second->data = A[0];
second->next = NULL;
last = second;
for (i = 1; i < n; i++)
{
t = (struct Node*)malloc(sizeof(struct Node));
t->data = A[i];
t->next = NULL;
last->next = t;
last = t;
}
}
void Display(struct Node* p)
{
while (p != NULL)
{
printf("->%d", p->data);
p = p->next;
}
}
void RDisplay(struct Node* p)
{
if (p!=NULL)
{
printf("->%d", p->data);
RDisplay(p->next);
}
}
void Merge(struct Node* p, struct Node* q)
{
struct Node* last;
if (p->data < q->data)
{
third = last = p; // move third , last on first
p = p->next; // move 1st to the 1st next node
third->next = NULL; // make last next to null
}
else
{
// repaet same for 2nd linked list to be merged
third = last = q;
q = q->next;
third->next = NULL;
}
while (p && q) // repeating process
{
if (p->data < q->data) // everytime check if p data is smaller then q data if so then
{
last->next = p; // last next sud point on 1st
last = p; // last sud be same as first
p = p->next; // move 1st to the next node
last->next = NULL; // make last next as null
}
else // otherwise do same thing for this also
{
// repete same for next ll
last->next = q;
last = q;
q = q->next;
last->next = NULL;
}
}
//this while loop keep on copying elements whichever is smaller and end of while loop remaning will be linked
if (p)last->next = p;// if p is not null last next sud point on p
if (q)last->next = q;// if q is not null last next sud point on q
}
int main()
{
int A[] = { 10,20,40,50,60 };
int B[] = { 5,15,18,25,30,55 };
Create(A, sizeof(A)/sizeof(int));
Create2(B, sizeof(B)/sizeof(int));
Merge(first, second);
printf("Merged elements \n ");
Display(third);
return 0;
}