-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDL list.cpp
615 lines (563 loc) · 11.2 KB
/
DL list.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
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
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
#include<iostream.h>
template<class T>
class dnode
{
public:
T info;
dnode<T>*next;
dnode<T>*previous;
dnode(T x)
{
info=x;
next=NULL;
previous=NULL;
}
};
template <class t>
class dllist
{
public:
dnode<t>* header;
dnode<t>*trailer;
dllist()
{
header=NULL;
trailer=NULL;
}
int isempty()
{
if(header==NULL)
return 1;
else
return 0;
}
dnode<t>* createnode(t x);
void addtohead(t x);
void addtotail(t x);
void insertion(dnode<t>*temp,int position);
t remove(int position);
dnode<t>* search(t y);
dllist operator+(dllist<t>ob1);
dllist reverse();
void display();
void clear();
};
template <class t>
dnode<t>* dllist<t>:: createnode(t x)
{
dnode<t>*temp=new dnode<t>(x);
return temp;
}
template <class t>
void dllist<t>:: addtohead(t x)
{
dnode<t>*temp=new dnode<t>(x);
if(header==NULL)
{
header=temp;
trailer=temp;
}
else
{
temp->next=header;
header=temp;
}
}
template <class t>
void dllist<t>:: addtotail(t x)
{
dnode<t>*temp=new dnode<t>(x);
if(header==NULL)
{
trailer=temp;
header=temp;
}
else
{
temp->previous=trailer;
trailer->next=temp;
trailer=temp;
}
}
template <class t>
void dllist<t>::insertion(dnode<t>*temp,int position)
{
dnode<t>*temp1=header;
for(int i=1;i<position-1;i++)
{
temp1=temp1->next;
}
temp->next=temp1->next;
temp->previous=temp1;
temp1->next=temp;
temp->next->previous=temp;
}
template <class t>
t dllist<t>:: remove(int position)
{
t x;
dnode<t>*temp;
if(header==trailer && header!=NULL)
{
x=header->info;
temp=header;
delete temp;
header=NULL;
trailer=NULL;
}
else
{
if(position==1)
{
temp=header;
header=header->next;
header->previous=NULL;
x=temp->info;
delete temp;
}
else if(position==-1)
{
temp=trailer;
temp->previous->next=NULL;
x=temp->info;
trailer=trailer->previous;
delete temp;
}
else
{
for(int i=1;i<position;i++)
{
temp=temp->next;
}
x=temp->info;
temp->previous->next=temp->next;
temp->next->previous=temp->previous;
delete temp;
}
}
return x;
}
template <class t>
dnode<t>* dllist<t>:: search(t y)
{
dnode<t>* temp=header->next;
if(y==header->info)
{
return header;
}
else if(y==trailer->info)
{
return trailer;
}
else
{
while(temp!=NULL)
{
if(y==temp->info)
break;
else
temp=temp->next;
}
return temp;
}
}
template <class t>
dllist<t> dllist<t>:: operator+(dllist<t>ob1)
{
dllist<t>ob3;
dnode<t>*temp1=header;
dnode<t>*temp2=ob1.header;
while(temp1!=NULL)
{
ob3.addtotail(temp1->info);
temp1=temp1->next;
}
while(temp2!=NULL)
{
ob3.addtotail(temp2->info);
temp2=temp2->next;
}
return ob3;
}
template <class t>
dllist<t> dllist<t>:: reverse()
{
dllist ob3;
dnode<t>*temp=header;
while(temp!=NULL)
{
ob3.addtohead(temp->info);
temp=temp->next;
}
return ob3;
}
template <class t>
void dllist<t>::display()
{
dnode<t>*temp=header;
while(temp!=NULL)
{
cout<<temp->info<<" ";
temp=temp->next;
}
}
template <class t>
void dllist<t>::clear()
{
dnode<t>*temp=header;
while(temp!=NULL)
{
delete temp;
temp=temp->next;
}
cout<<"\n List cleared!! ";
}
int main()
{
char c='y';
dllist<int>l1;
dllist<int>l2;
dllist<int>l3;
dllist<int>l4;
dnode<int>*temp=NULL;
int element1;
int x;
int ch;
int y;
int a=1;
int count1=0;
int count2=0;
int pos;
cout<<"\n Enter elements for doubly linked list 1! ";
while(c=='y')
{
cout<<"\n Enter element: ";
cin>>x;
count1++;
l1.addtotail(x);
cout<<"\n Do you want to add more elements (y/n)? ";
cin>>c;
}
c='y';
cout<<"\n First linked list consists of: ";
cout<<"\n";
l1.display();
cout<<"\n Enter elements for doubly linked list 2! ";
while(c=='y')
{
cout<<"\n Enter element: ";
cin>>x;
l2.addtotail(x);
count2++;
cout<<"\nDo you want to add more elements (y/n)? ";
cin>>c;
}
c='y';
cout<<"\n Second linked list consists of: ";
cout<<"\n";
l2.display();
while(c=='y')
{
cout<<"\n*********MAIN MENU**********";
cout<<"\n 1.Insert element at starting! ";
cout<<"\n 2.Insert element at i th position! ";
cout<<"\n 3.Insert at end positon! ";
cout<<"\n 4.Remove element from starting! ";
cout<<"\n 5.Remove element from ith position! ";
cout<<"\n 6.Remove from end position! ";
cout<<"\n 7.Search for element! ";
cout<<"\n 8.Concatenate! ";
cout<<"\n 9.To reverse a Doubly Linked List! ";
cout<<"\nEnter your choice: ";
cin>>ch;
switch(ch)
{
case 1:
{
cout<<"\n Enter element: ";
cin>>x;
cout<<"\n Where to insert doubley linked list 1 or doubley linked list 2 (1/2)? ";
cin>>y;
if(y==1)
{
l1.addtohead(x);
count1++;
cout<<"\n Present list 1";
cout<<"\n";
l1.display();
break;
}
if(y==2)
{
l2.addtohead(x);
count2++;
cout<<"\n Present list 2";
cout<<"\n";
l2.display();
break;
}
}
case 2:
{
cout<<"\n Enter element";
cin>>x;
cout<<"\n Where to insert doubley linked list 1 or doubley linked list 2 (1/2)? ";
cin>>y;
if(y==1)
{
cout<<"\n Enter the position for inserting the element (2- "<<count1<<")";
cin>>pos;
if(pos>count1)
{
cout<<"\n No such position exists ";
break ;
}
else
{
temp=new dnode<int>(x);
l1.insertion(temp,pos);
cout<<"\n Present list";
count1++;
cout<<"\n";
l1.display();
break;
}
}
if(y==2)
{
cout<<"\n Enter the position for inserting the element (2- "<<count2<<")";
cin>>pos;
if(pos>count2)
{
cout<<"\n No such position exists ";
break ;
}
else
{
temp=new dnode<int>(x);
l2.insertion(temp,pos);
cout<<"\n Present list";
count2++;
cout<<"\n";
l2.display();
break;
}
}
}
case 3:
{
cout<<"\n Enter the element for appending at the last position ";
cin>>x;
cout<<"\n From where to remove the element from doubely linked list 1 or doubely linked list 2 (1/2)? ";
cin>>y;
if(y==1)
{
l1.addtotail(x);
cout<<"\n Present doubley linked list 1: ";
l1.display();
}
if(y==2)
{
l2.addtotail(x);
cout<<"\n Present doubley linked list 2: ";
l2.display();
}
break;
}
case 4:
{
cout<<"\n From where to remove the element from doubely linked list 1 or doubely linked list 2 (1/2)? ";
cin>>y;
if(y==1)
{
int element=l1.remove(1);
count1--;
cout<<"\n Popped element "<<element ;
break;
}
if(y==2)
{
int element=l2.remove(1);
count2--;
cout<<"\n Popped element "<<element ;
break;
}
}
case 5:
{
cout<<"\n From where to remove the element list 1 or list 2(1/2)?";
cin>>y;
if(y==1)
{
cout<<"\n Enter the position from where to remove the element (2- "<<count1--<<")";
cin>>pos;
if(pos>count1)
{
cout<<"\n No such position exists! ";
break ;
}
else
{
temp=new dnode<int>(x);
element1= l1.remove(pos);
cout<<"\n Popped element "<<element1;
cout<<"\n";
break;
}
}
if(y==2)
{
cout<<"\n Enter the position from where to remove the element (2-"<<count2--<<") ";
cin>>pos;
if(pos>count2)
{
cout<<"\n No such position exists ";
break ;
}
else
{
temp=new dnode<int>(x);
element1= l2.remove(pos);
cout<<"\n Popped element "<<element1;
cout<<"\n";
break;
}
}
}
case 6:
{
cout<<"\n From where to remove the element from doubely linked list 1 or doubely linked list 2 (1/2)? ";
cin>>y;
if(y==1)
{
int element=l1.remove(-1);
count1--;
cout<<"\n Popped element "<<element ;
break;
}
if(y==2)
{
int element=l2.remove(-1);
count2--;
cout<<"\n Popped element "<<element ;
break;
}
}
case 7:
{
cout<<"\n";
cout<<"\n From where to remove the element from doubely linked list 1 or doubely linked list 2 (1/2)? ";
cin>>y;
if(y==1)
{
int n=l1.isempty();
if(n==1)
{
cout<<"\nDoubley linked list 1 is empty!";
break;
}
else
{
cout<<"\n Enter element to be searched : ";
cin>>element1;
temp=l1.search(element1);
if(temp!=NULL)
cout<<"\n "<<temp->info;
else
cout<<"\n Element not found in list 1 ";
break;
}
}
if(y==2)
{
int n=l2.isempty();
if(n==1)
{
cout<<"\nDoubley linked list 2 is empty";
break;
}
else
{
cout<<"\n Enter element to be searched ";
cin>>element1;
temp=l2.search(element1);
if(temp!=NULL)
cout<<"\n "<<temp->info;
else
cout<<"\n Element not found in list 2 ";
break;
}
}
}
case 8:
{
l3=l1+l2;
cout<<"\n";
cout<<"\n Concatenated list ";
cout<<"\n";
l3.display();
break;
}
case 9:
{
cout<<"\nWhich doubely linked list 1 or doubely linked list 2 to reverse (1/2) ";
cin>>y;
if(y==1)
{
if(!(l1.isempty()))
{
cout<<"\n ";
cout<<"\n Original list ";
l1.display();
l4=l1.reverse();
cout<<"\n Reversed list ";
l4.display();
break;
}
else
{
cout<<"\n EMPTY LIST ";
break;
}
}
if(y==2)
{
if(!(l2.isempty()))
{
cout<<"\n ";
cout<<"\n Original list ";
l2.display();
l4=l2.reverse();
cout<<"\n Reversed list ";
l4.display();
break;
}
else
{
cout<<"\n EMPTY LIST ";
break;
}
}
}
}
cout<<"\n Do you wish to continue?(y/n) ";
cin>>c;
}
if(!(l1.isempty()))
{
l1.clear();
}
if(!(l2.isempty()))
{
l2.clear();
}
if(!(l3.isempty()))
{
l3.clear();
}
if(!(l4.isempty()))
{
l4.clear();
}
return 0;
}