-
Notifications
You must be signed in to change notification settings - Fork 0
/
DoubleLinkedList.cpp
417 lines (305 loc) · 7.38 KB
/
DoubleLinkedList.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
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
#include <stdio.h>
#include <stdlib.h>
#include <stddef.h>
struct node
{
int data;
struct node *next;
struct node *prev;
};
node *start=NULL;
node *end=NULL;
void create();
void display();
void deletion();
void insert();
int main()
{
int choice;
while(1)
{
printf("Enter your choice: \n 1.Create a new linked list( or append several nodes) \n 2.Display the existing linked list \n 3.Insert an element \n 4.Delete an element \n 5.Exit \n");
scanf("%d",&choice);
switch(choice)
{
case 1: create();
break;
case 2: display();
break;
case 3: insert();
break;
case 4: deletion();
break;
case 5: exit(0);
default : printf("Unknown choice. Pick again\n");
}
}
}
void create()
{
char c;
int n;
struct node *new_node;
new_node= (struct node*)malloc(sizeof(struct node));
printf("Enter the data(number) for the new node\n");
scanf("%d",&n);
new_node->data=n;
if(start==NULL)
{
start=end=new_node;
start->next=NULL;
start->prev=NULL;
}
else
{
end->next=new_node;
new_node->prev=end;
end=new_node;
end->next=NULL;
}
printf("Do you want to add another node?(y/n)\n");
scanf(" %c",&c);
while(c=='y')
{
new_node= (struct node*)malloc(sizeof(struct node));
printf("Enter the data(number) for the new node\n");
scanf("%d",&n);
new_node->data=n;
new_node->next=NULL;
end->next=new_node;
new_node->prev=end;
end=end->next;
printf("Do you want to add another node?(y/n)\n");
scanf(" %c",&c);
}
}
void insert()
{
if(start==NULL)
{
printf("The list is empty. Use the 'create a new list' option to get started\n");
return;
}
struct node *new_node=(struct node*)malloc(sizeof(struct node));
struct node *ptr=start;
char c;int a;
printf("Enter the data(number) for the new node\n");
scanf("%d",&new_node->data);
printf("Where do you want to insert the new node? \n a.Beginning \n b.End \n c.Before a certain node \n d.After a certain node \n Enter your choice : \n");
scanf(" %c",&c);
switch(c)
{
case 'a' : new_node->next=start;
new_node->prev=NULL;
start->prev=new_node;
start=new_node;
printf("Node Inserted");
break;
case 'b' : end->next=new_node;
new_node->prev=end;
end=new_node;
end->next=NULL;
printf("Node Inserted");
break;
case 'c' : printf("Enter the number before which you want to enter the new node\n");
scanf("%d",&a);
if(start->data==a)
{
new_node->next=start;
new_node->prev=NULL;
start->prev=new_node;
start=new_node;
printf("Node Inserted");
return;
}
while(ptr->next!=NULL)
{
if(ptr->next->data==a)
{
new_node->next=ptr->next;
new_node->prev=ptr;
ptr->next->prev=new_node;
ptr->next=new_node;
printf("Node Inserted");
return;
}
ptr=ptr->next;
}
printf("The entered number does not exist in the stored list. Please try again.\n");
break;
case 'd' : printf("Enter the number after which you want to enter the new node\n");
scanf("%d",&a);
if(end->data==a)
{
new_node->next=end->next;
new_node->prev=end;
end->next=new_node;
end=new_node;
printf("Node Inserted");
return;
}
do
{
if(ptr->data==a)
{
new_node->next=ptr->next;
new_node->prev=ptr;
ptr->next->prev=new_node;
ptr->next=new_node;
printf("Node Inserted");
return;
}
ptr=ptr->next;
}while(ptr!=NULL);
printf("The entered number does not exist in the stored list. Please try again.\n");
break;
default : printf("Wrong input. Please try again\n");
}
}
void deletion()
{
if(start==NULL)
{
printf("The list is empty. Use the 'create a new list' option to get started\n");
return;
}
char c;
int n;
struct node *temp,*b;
printf("Which node do you want to Delete? \n a.First node \n b.Last Node \n c.Before a certain node \n d. After a certain node \n e.A node containing a certain value \n");
scanf(" %c",&c);
switch(c)
{
case 'a' : temp=start;
start=start->next;
start->prev=NULL;
free(temp);
printf("Node Deleted\n");
break;
case 'b' : temp=end;
end=end->prev;
end->next=NULL;
free(temp);
printf("Node Deleted\n");
break;
case 'c' : if(start->next==NULL)
{
printf("The list contains only one node. These is no 'before' or 'after', per say. Please Try Again\n");
return;
}
printf("Enter the number, the node before which is to be deleted :\n)");
scanf("%d",&n);
temp=start->next;
b=start;
if(b->data==n)
{
printf("The number entered resides in the first node. There is no node before the first node. Please try again.\n");
return;
}
if(temp->data==n)
{
start=start->next;
start->prev=NULL;
free(b);
printf("Node Deleted\n");
return;
}
do
{
if(temp->next->data==n)
{
b->next=temp->next;
temp->next->prev=b;
free(temp);
printf("Node Deleted\n");
return;
}
temp=temp->next;
b=b->next;
}while(temp->next!=NULL);
printf("The number entered is not present in the existing linked list \n");
break;
case 'd' : if(start->next==NULL)
{
printf("The list contains only one node. These is no 'before' or 'after', per say. Please Try Again \n");
return;
}
printf("Enter the number, the node after which is to be deleted :\n");
scanf("%d",&n);
if(end->data==n)
{
printf("The number entered resides in the last node. There is no node after the same. Please try again \n");
return;
}
temp=start;
if(end->prev->data==n)
{
b=end;
end->prev->next=NULL;
end=b->prev;
free(b);
printf("Node Deleted");
return;
}
while(temp->next!=end)
{
if(temp->data==n)
{
b=temp->next;
temp->next=b->next;
b->next->prev=temp;
free(b);
printf("Node Deleted\n");
return;
}
temp=temp->next;
}
printf("The number entered is not present in the existing list. Please try again \n");
break;
case 'e' : printf("Enter the number, the node containing which is to be deleted :\n)");
scanf("%d",&n);
if(start->data==n)
{
temp=start;
start=start->next;
start->prev=NULL;
free(temp);
printf("Node Deleted \n");
return;
}
temp=start->next;
b=start;
while(temp!=NULL)
{
if(temp->data==n)
{
b->next=temp->next;
temp->next->prev=b;
free(temp);
printf("Node Deleted");
return;
}
temp=temp->next;
b=b->next;
}
printf("The number entered is not present in the existing list. Please try again \n");
break;
default : printf("Invalid Option. Please try again");
}
}
void display()
{
struct node *temp;
if(start==NULL)
{
printf("The list is empty. Use the 'create a new list' option to get started\n");
return;
}
temp=start;
printf("The Current List :\n");
while(temp!=NULL)
{
printf("%d \n",temp->data);
temp=temp->next;
}
}