-
Notifications
You must be signed in to change notification settings - Fork 142
Expand file tree
/
Copy pathLinkedList.c
More file actions
426 lines (374 loc) · 12 KB
/
Copy pathLinkedList.c
File metadata and controls
426 lines (374 loc) · 12 KB
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
Expt : Develop a program to create a single linked list using dynamic memory allocation functions.
Implement the following operation on the linked list.
a) Display
b) Insert a node in the linked list (at front,at end ,in the middle )
C) Delete a node from the linked list(at front,at end, in the middle)
d)Display the linked list in the reverse e)Revert the linked list
*/
#include <stdio.h>
#include <stdlib.h>
// Define the structure of a node
struct node {
int data;
struct node *link;
};
// Function to display list
void display(struct node *curr) {
if (curr == NULL)
printf("\nLIST IS EMPTY!\n");
else {
printf("\nLinked List: ");
while (curr != NULL) {
printf("%d -> ", curr->data);
curr = curr->link;
}
printf("NULL\n");
}
}
// Function to display in reverse using recursion
void reverse_display(struct node *curr) {
if (curr != NULL) {
reverse_display(curr->link);
printf("%d -> ", curr->data);
}
}
// Main Program
int main() {
struct node *head = NULL, *ptr, *current;
int ch, sr, pos, fnd, n, ch2, ch3;
char c1;
// Create first node
ptr = malloc(sizeof(struct node));
printf("Enter first number: ");
scanf("%d", &ptr->data);
ptr->link = NULL;
head = ptr;
// Creation of further nodes
do {
printf("Do you want to create another node? (Y/N): ");
scanf(" %c", &c1);
if (c1 == 'Y' || c1 == 'y') {
current = malloc(sizeof(struct node));
printf("Enter the number: ");
scanf("%d", ¤t->data);
current->link = NULL;
ptr->link = current;
ptr = current;
}
} while (c1 == 'Y' || c1 == 'y');
// Menu-driven operations
do {
printf("\n================ MENU ================\n");
printf("1. Display Linked List\n");
printf("2. Search by Data\n");
printf("3. Insert Node\n");
printf("4. Delete Node\n");
printf("5. Reverse the Linked List\n");
printf("6. Display in Reverse (Recursive)\n");
printf("7. Exit\n");
printf("Enter your choice: ");
scanf("%d", &ch);
switch (ch) {
case 1:
display(head);
break;
case 2: // Search
printf("Enter the data to search: ");
scanf("%d", &sr);
pos = 1;
fnd = 0;
current = head;
while (current != NULL) {
if (current->data == sr) {
fnd = 1;
break;
}
pos++;
current = current->link;
}
if (fnd)
printf("%d found at position %d\n", sr, pos);
else
printf("Element not found!\n");
break;
case 3: // Insert
printf("\nWhere do you want to insert the data?\n");
printf("1. At the beginning\n");
printf("2. After a given value\n");
printf("3. At the end\n");
printf("Enter your choice: ");
scanf("%d", &ch2);
{
struct node *p = malloc(sizeof(struct node));
printf("Enter data for the new node: ");
scanf("%d", &p->data);
p->link = NULL;
if (ch2 == 1) { // Beginning
p->link = head;
head = p;
} else if (ch2 == 2) { // After a given value
printf("Enter value after which to insert: ");
scanf("%d", &n);
current = head;
while (current != NULL && current->data != n)
current = current->link;
if (current == NULL) {
printf("Value not found!\n");
free(p);
} else {
p->link = current->link;
current->link = p;
}
} else if (ch2 == 3) { // End
current = head;
while (current->link != NULL)
current = current->link;
current->link = p;
} else {
printf("Invalid choice!\n");
free(p);
}
}
display(head);
break;
case 4: // Delete
printf("\nWhere do you want to delete the node?\n");
printf("1. At the beginning\n");
printf("2. A specific value\n");
printf("3. At the end\n");
printf("Enter your choice: ");
scanf("%d", &ch3);
if (head == NULL) {
printf("List is empty!\n");
break;
}
if (ch3 == 1) { // Beginning
current = head;
head = head->link;
free(current);
} else if (ch3 == 2) { // Specific value
printf("Enter data to delete: ");
scanf("%d", &n);
current = head;
struct node *prev = NULL;
while (current != NULL && current->data != n) {
prev = current;
current = current->link;
}
if (current == NULL)
printf("Value not found!\n");
else {
if (prev == NULL)
head = current->link;
else
prev->link = current->link;
free(current);
}
} else if (ch3 == 3) { // End
current = head;
struct node *prev = NULL;
while (current->link != NULL) {
prev = current;
current = current->link;
}
if (prev == NULL)
head = NULL;
else
prev->link = NULL;
free(current);
} else
printf("Invalid choice!\n");
display(head);
break;
case 5: // Reverse linked list (iteratively)
{
struct node *p = head, *q = NULL, *r = NULL;
while (p != NULL) {
r = q;
q = p;
p = p->link;
q->link = r;
}
head = q;
printf("List reversed successfully!\n");
display(head);
}
break;
case 6: // Display in reverse (recursive)
if (head == NULL)
printf("\nLIST IS EMPTY!\n");
else {
printf("\nReverse Display: ");
reverse_display(head);
printf("NULL\n");
}
break;
case 7:
printf("Exiting the Program...\n");
break;
default:
printf("Invalid choice! Please try again.\n");
}
} while (ch != 7);
return 0;
}
/* OUTPUT :
C:\Users\shrus\OneDrive\Desktop\DSA Assignments\Assignment 6>LinkedList.exe
Enter first number: 2
Do you want to create another node? (Y/N): Y
Enter the number: 6
Do you want to create another node? (Y/N): Y
Enter the number: 4
Do you want to create another node? (Y/N): Y
Enter the number: 9
Do you want to create another node? (Y/N): Y
Enter the number: 5
Do you want to create another node? (Y/N): N
================ MENU ================
1. Display Linked List
2. Search by Data
3. Insert Node
4. Delete Node
5. Reverse the Linked List
6. Display in Reverse (Recursive)
7. Exit
Enter your choice: 1
Linked List: 2 -> 6 -> 4 -> 9 -> 5 -> NULL
================ MENU ================
1. Display Linked List
2. Search by Data
3. Insert Node
4. Delete Node
5. Reverse the Linked List
6. Display in Reverse (Recursive)
7. Exit
Enter your choice: 2
Enter the data to search: 4
4 found at position 3
================ MENU ================
1. Display Linked List
2. Search by Data
3. Insert Node
4. Delete Node
5. Reverse the Linked List
6. Display in Reverse (Recursive)
7. Exit
Enter your choice: 3
Where do you want to insert the data?
1. At the beginning
2. After a given value
3. At the end
Enter your choice: 1
Enter data for the new node: 3
Linked List: 3 -> 2 -> 6 -> 4 -> 9 -> 5 -> NULL
================ MENU ================
1. Display Linked List
2. Search by Data
3. Insert Node
4. Delete Node
5. Reverse the Linked List
6. Display in Reverse (Recursive)
7. Exit
Enter your choice: 3
Where do you want to insert the data?
1. At the beginning
2. After a given value
3. At the end
Enter your choice: 2
Enter data for the new node: 8
Enter value after which to insert: 6
Linked List: 3 -> 2 -> 6 -> 8 -> 4 -> 9 -> 5 -> NULL
================ MENU ================
1. Display Linked List
2. Search by Data
3. Insert Node
4. Delete Node
5. Reverse the Linked List
6. Display in Reverse (Recursive)
7. Exit
Enter your choice: 3
Where do you want to insert the data?
1. At the beginning
2. After a given value
3. At the end
Enter your choice: 3
Enter data for the new node: 7
Linked List: 3 -> 2 -> 6 -> 8 -> 4 -> 9 -> 5 -> 7 -> NULL
================ MENU ================
1. Display Linked List
2. Search by Data
3. Insert Node
4. Delete Node
5. Reverse the Linked List
6. Display in Reverse (Recursive)
7. Exit
Enter your choice: 4
Where do you want to delete the node?
1. At the beginning
2. A specific value
3. At the end
Enter your choice: 1
Linked List: 2 -> 6 -> 8 -> 4 -> 9 -> 5 -> 7 -> NULL
================ MENU ================
1. Display Linked List
2. Search by Data
3. Insert Node
4. Delete Node
5. Reverse the Linked List
6. Display in Reverse (Recursive)
7. Exit
Enter your choice: 4
Where do you want to delete the node?
1. At the beginning
2. A specific value
3. At the end
Enter your choice: 2
Enter data to delete: 4
Linked List: 2 -> 6 -> 8 -> 9 -> 5 -> 7 -> NULL
================ MENU ================
1. Display Linked List
2. Search by Data
3. Insert Node
4. Delete Node
5. Reverse the Linked List
6. Display in Reverse (Recursive)
7. Exit
Enter your choice: 4
Where do you want to delete the node?
1. At the beginning
2. A specific value
3. At the end
Enter your choice: 3
Linked List: 2 -> 6 -> 8 -> 9 -> 5 -> NULL
================ MENU ================
1. Display Linked List
2. Search by Data
3. Insert Node
4. Delete Node
5. Reverse the Linked List
6. Display in Reverse (Recursive)
7. Exit
Enter your choice: 5
List reversed successfully!
Linked List: 5 -> 9 -> 8 -> 6 -> 2 -> NULL
================ MENU ================
1. Display Linked List
2. Search by Data
3. Insert Node
4. Delete Node
5. Reverse the Linked List
6. Display in Reverse (Recursive)
7. Exit
Enter your choice: 6
Reverse Display: 2 -> 6 -> 8 -> 9 -> 5 -> NULL
================ MENU ================
1. Display Linked List
2. Search by Data
3. Insert Node
4. Delete Node
5. Reverse the Linked List
6. Display in Reverse (Recursive)
7. Exit
Enter your choice: 7
Exiting the Program...
*/