-
Notifications
You must be signed in to change notification settings - Fork 0
/
5. Implementation of Linked List.c
472 lines (385 loc) · 11 KB
/
5. Implementation of Linked List.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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
/*****************************************************************************************************
TITLE: Program to implement Linked List.
*****************************************************************************************************/
#include<stdio.h>
#include<stdlib.h>
typedef struct node
{
int data; //node containing int data
struct node *next;
}Node;
typedef struct
{
Node *start;
}LL;
void insertbeg(LL *lptr,int x)
{
Node *p; //create a new node
p=(Node *)malloc(sizeof(Node));
p->data=x;
p->next= lptr->start; //current start node now becomes second node
lptr->start=p; //newly created node becomes start node
}
void append(LL *lptr,int x) //insert node at end
{
Node *p,*q;
p=(Node *)malloc(sizeof(Node));
p->data=x;
p->next=NULL; //make the node as last node
if(lptr->start==NULL) //is this a first node?
{
lptr->start=p;//start points to p
}
else
{
q=lptr->start;
while(q ->next!=NULL) //traverse LL until you reach the last node
{
q=q->next;
}
q->next=p; //link last node with current node
}
}
void deletenode(LL *lptr,int x)
{
Node *q;
q = lptr->start;
Node *p = NULL;
while( q != NULL) //search the node
{
if (q->data == x) //data matches found, break while
break;
p = q; //if not found, current node becomes previous node, keeps track of previous node
q = q->next; //go to next node
}
if( q == NULL) //if desired node not found
{
printf("Node with %d data not found\n",x);
}
else //if found
{
if(lptr->start == q) //if node to be deleted is first node
{
lptr->start = lptr->start->next; //or write q->next
//update start, start will now point to second node
}
else
{
p->next = q->next;//previous node points to node after node to be deleted
}
free(q); //release the memory being pointed by q
}
}
int countnodes(LL l)
{
int count=0;
Node *ptr;
ptr= l.start;
while(ptr!= NULL)
{
count++; //increment counter if node exist
ptr = ptr->next; //go to next node
}
return count;
}
void concat(LL *lptr1,LL l2)
{
Node *q;
if (l2.start == NULL) //l2 is empty
return;
if(lptr1->start==NULL) //l1 is empty and l2 is Not Empty
{
lptr1->start=l2.start;//append LL2 to start of LL1
}
else
{
q=lptr1->start; //locate last node of LL 1
while(q->next != NULL)
{
q=q->next;
}
q->next=l2.start; //link last node of l1 with first node of l2
}
}
void display(LL l)
{
Node *q;
q=l.start;
while(q!=NULL) //until LL gets exhausted
{
printf("%d\n",q->data);
q=q->next;
}
}
void reverse(LL *lptr)
{
Node *q,*r,*p;
p=NULL; //previous node
q=lptr->start; //current node
while(q!=NULL)
{
r=q->next; //store next node in r pointer
q->next=p; //current node points to previous node
p=q; //for next iteration, current node becomes previous
q=r; //for next iteration, r node becomes current node
}
lptr->start=p; //modify start so that it points to last node of original LL
}
void insertn(LL *lptr,int n,int x)
{
Node *p,*q;
p = (Node *)malloc(sizeof(Node));
p->data = x;
p->next = lptr->start;
q = lptr->start;
for(int i=1;i<=n-1;i++)
{
q = q->next;
}
p->next=q->next;
q->next = p;
}
int main()
{
LL l1,l2,l3; //three linked list of integers
l1.start=NULL;
l2.start=NULL;
l3.start=NULL;
int choice,ele,n;
do
{
printf("===================================================================================================\n");
printf("\nEnter your choice :\n 1.Insert at beg LL1\n 2.Insert at end\n 3.Insert after n nodes\n 4.Display\n 5.Delete Data\n 6.Count Nodes\n 7.Reverse\n 8.Concatenate 2 LL\n 9.Exit\n\n");
printf("===================================================================================================\n");
scanf("%d",&choice);
switch(choice)
{
case 1 :
printf("Enter the element to be added at the beginning of the Linked List :\n");
scanf("%d",&ele);
insertbeg(&l1,ele);
break;
case 2 :
printf("Enter the element to be added at the end of the Linked List :\n");
scanf("%d",&ele);
append(&l1,ele);
break;
case 3 :
printf("After how many nodes do you want to add the new node:\n");
scanf("%d",&n);
printf("Enter the element to be added at position %d :\n",n+1);
scanf("%d",&ele);
insertn(&l1,n,ele);
break;
case 4 :
printf("The Linked List is :\n");
display(l1);
break;
case 5 :
printf("Enter the data to be deleted:\n");
scanf("%d",&ele);
deletenode(&l1,ele);
break;
case 6 :
printf("The total nodes in the Linked List are : %d\n",countnodes(l1));
break;
case 7 :
append(&l3,80);
append(&l3,90);
insertbeg(&l3,100);
reverse(&l3);
printf("The reversed Linked List is:\n");
display(l3);
break;
case 8 :
append(&l2,60);
append(&l2,50);
insertbeg(&l2,40);
concat(&l1,l2);
printf("The concatenated Linked List is :\n");
display(l1);
break;
}
}while (choice!=9);
return 0;
}
/*****************************************************************************************************
OUTPUT:
===================================================================================================
Enter your choice :
1.Insert at beg LL1
2.Insert at end
3.Insert after n nodes
4.Display
5.Delete Data
6.Count Nodes
7.Reverse
8.Concatenate 2 LL
9.Exit
===================================================================================================
1
Enter the element to be added at the beginning of the Linked List :
64
===================================================================================================
Enter your choice :
1.Insert at beg LL1
2.Insert at end
3.Insert after n nodes
4.Display
5.Delete Data
6.Count Nodes
7.Reverse
8.Concatenate 2 LL
9.Exit
===================================================================================================
1
Enter the element to be added at the beginning of the Linked List :
78
===================================================================================================
Enter your choice :
1.Insert at beg LL1
2.Insert at end
3.Insert after n nodes
4.Display
5.Delete Data
6.Count Nodes
7.Reverse
8.Concatenate 2 LL
9.Exit
===================================================================================================
2
Enter the element to be added at the end of the Linked List :
47
===================================================================================================
Enter your choice :
1.Insert at beg LL1
2.Insert at end
3.Insert after n nodes
4.Display
5.Delete Data
6.Count Nodes
7.Reverse
8.Concatenate 2 LL
9.Exit
===================================================================================================
3
After how many nodes do you want to add the new node:
2
Enter the element to be added at position 3 :
25
===================================================================================================
Enter your choice :
1.Insert at beg LL1
2.Insert at end
3.Insert after n nodes
4.Display
5.Delete Data
6.Count Nodes
7.Reverse
8.Concatenate 2 LL
9.Exit
===================================================================================================
4
The Linked List is :
78
64
25
47
===================================================================================================
Enter your choice :
1.Insert at beg LL1
2.Insert at end
3.Insert after n nodes
4.Display
5.Delete Data
6.Count Nodes
7.Reverse
8.Concatenate 2 LL
9.Exit
===================================================================================================
5
Enter the data to be deleted:
78
===================================================================================================
Enter your choice :
1.Insert at beg LL1
2.Insert at end
3.Insert after n nodes
4.Display
5.Delete Data
6.Count Nodes
7.Reverse
8.Concatenate 2 LL
9.Exit
===================================================================================================
4
The Linked List is :
64
25
47
===================================================================================================
Enter your choice :
1.Insert at beg LL1
2.Insert at end
3.Insert after n nodes
4.Display
5.Delete Data
6.Count Nodes
7.Reverse
8.Concatenate 2 LL
9.Exit
===================================================================================================
6
The total nodes in the Linked List are : 3
===================================================================================================
Enter your choice :
1.Insert at beg LL1
2.Insert at end
3.Insert after n nodes
4.Display
5.Delete Data
6.Count Nodes
7.Reverse
8.Concatenate 2 LL
9.Exit
===================================================================================================
7
The reversed Linked List is:
90
80
100
===================================================================================================
Enter your choice :
1.Insert at beg LL1
2.Insert at end
3.Insert after n nodes
4.Display
5.Delete Data
6.Count Nodes
7.Reverse
8.Concatenate 2 LL
9.Exit
===================================================================================================
8
The concatenated Linked List is :
64
25
47
40
60
50
===================================================================================================
Enter your choice :
1.Insert at beg LL1
2.Insert at end
3.Insert after n nodes
4.Display
5.Delete Data
6.Count Nodes
7.Reverse
8.Concatenate 2 LL
9.Exit
===================================================================================================
9
Process returned 0
*****************************************************************************************************/