forked from rylp/DSA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
4.pres_sec _club
505 lines (425 loc) · 8.43 KB
/
4.pres_sec _club
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
//SINGLY LINKEDLIST
//use do while to keep adding members.
//In dipslay, seperate display for pres and sec isnt happening.
//Node swap isnt happening
//Sorting is done . not merging
#include <iostream>
using namespace std;
class node
{
string name;
int prn;
node* next;
public:
node()
{
name ="";
prn = 0;
}
friend class ll;
};
class ll
{
public:
node* head;
node* tail;
ll()
{
head = NULL;
tail = NULL;
}
void insert_front();
void insert_between(int key);
void insert_back();
void del_front();
void del_between(int key);
void del_back();
void display();
void count();
void disp_rev(node* start);
void concate(node* ahead, node* atail, node* bhead);
void sort();
};
void ll::insert_front()
{
node* nn = new node;
cout << "Enter President Details:" << endl;
cout << "Enter Name:" << endl;
cin >> nn->name;
cout << "Enter PRN:" << endl;
cin >> nn->prn;
nn->next = NULL;
if (head == NULL && tail == NULL)//empty
{
head = nn;
tail = nn;
cout << "---Inserted in Empty Linked List---" << endl;
}
else//not empty
{
nn->next = head;
head = nn;
cout << "---Inserted At Start---" << endl;
}
}
void ll::insert_back()
{
node* nn = new node;
cout << "Enter Secreatary Details:" << endl;
cout << "Enter Name:" << endl;
cin >> nn->name;
cout << "Enter PRN:" << endl;
cin >> nn->prn;
nn->next = NULL;
if (head == NULL && tail == NULL)//empty
{
head = nn;
tail = nn;
cout << "---Inserted in Empty LINKED List---" << endl;
}
else//not empty
{
tail->next = nn;
tail = nn;
cout << "---Inserted at End---" << endl;
}
}
void ll::insert_between(int key)
{
//3cases
node* nn = new node;
cout << "Enter Member Details:" << endl;
cout << "Enter Name:" << endl;
cin >> nn->name;
cout << "Enter PRN:" << endl;
cin >> nn->prn;
nn->next = NULL;
int flag = 0;
if (head == NULL && tail == NULL)//empty
{
head = nn;
tail = nn;
cout << "---Inserted in Empty Linked list" << endl;
cout << "---Currently This Member is Both Pres and Sec" << endl;
}
else if (flag == 0)
{
node* start = head;
while (start != NULL)
{
if (start->prn == key)
flag++;
start = start->next;
}
if (flag == 0)//invalid prn
{
cout << "---Invalid PRN---" << endl;
cout << "---Insertion Not possible---" << endl;
}
else if (tail->prn == key)//inserting at last
{
tail->next = nn;
tail = nn;
cout << "---Inserted at End---" << endl;
cout << "---This Member became Secretary---" << endl;
}
else //inserting in valid prn
{
node* temp = head;
node* temp2;
while (temp->prn != key && temp != NULL)
{
temp = temp->next;
}
temp2 = temp->next;
temp->next = nn;
nn->next = temp2;
cout << "---Inserted Member at proper Position---" << endl;
}
}
}
void ll::del_front()
{
//2 cases
if (head == NULL && tail == NULL)//empty
cout << "---Nothing To delete---" << endl;
else//non empty
{
node* temp = head;
head = head->next;
delete(temp);
}
}
void ll::del_between(int key)
{
int flag = 0;
if (head == NULL && tail == NULL)//empty
{
cout << "---Nothing to Delete---" << endl;
}
else if (flag == 0)
{
node* start = head;
while (start != NULL)
{
if (start->prn == key)
flag++;
start = start->next;
}
if (flag == 0)
{
cout << "---Invalid PRN---" << endl;
cout << "---No deletion Possible" << endl;
}
else if (tail->prn == key && head!=tail)//delete at end with multiple elements
{
node* temp = head;
while (temp->next != tail)
{
temp = temp->next;
}
tail = temp;
temp = temp->next;
tail->next = NULL;
delete(temp);
cout << "---DEleted at end---" << endl;
}
else if (head->prn == key)//del at start with single and multiple elements
{
node* temp = head;
head = head->next;
temp->next = NULL;
delete(temp);
cout << "---Deleted at start---" << endl;
}
else//proper deleteion from between
{
node* temp = head;
node* temp2 = head;
while (temp->prn != key)
{
temp2 = temp;
temp = temp->next;
}
temp2->next = temp->next;
temp->next = NULL;
delete(temp);
cout << "---Deleted from proper position---" << endl;
}
}
}
void ll::del_back()
{
//3 cases
if (head == NULL && tail == NULL)//empty
{
cout << "---Nothing to Delete--- " << endl;
}
else if (head->next == NULL)//only 1 element
{
node* temp=tail;
delete(temp);
head = tail = NULL; //very imp
cout << "---Deleted the only Element in Linked List---" << endl;
}
else
{
node* temp = head;
node* temp2 = head;
while (temp->next != NULL)
{
temp2 = temp;
temp = temp->next;
}
tail = temp2;
tail->next = NULL; //very imp
delete(temp);
cout << "---Deleted at End----" << endl;
}
}
void ll::concate(node* ahead, node* atail, node* bhead)
{
head = ahead;
atail->next = bhead;
}
void ll::sort()
{
/*string temp_name;
int temp_prn;
node* temp3 = head;
node* temp1;
node* temp2;
for (temp1 = head; temp1 != NULL; temp1 = temp1->next)//for(int i=0;i<n-1;i++)
{
for (temp2 = head; temp2->next!= NULL; temp2 = temp2->next) //for(j=0;j<n-1;j++)
{
temp2->next = temp3;
if (temp2->prn > temp3->prn)
{
temp_prn = temp2->prn;
temp2->prn = temp3->prn;
temp3->prn = temp_prn;
temp_name = temp2->name;
temp2->name = temp3->name;
temp3->name= temp_name;
}
}
}*/
node* temp1;
node* temp2;
node* temp3;
for (temp1 = head; temp1->next != NULL; temp1 = temp1->next)//for(i=0;i<n-1;i++)
{
for (temp2 = head; temp2->next != NULL; temp2 = temp2->next)//for(j=0;j<n-1;j++)
{
//BY DATA SWAP
temp3 = temp2->next;
if (temp2->prn > temp3->prn)
{
swap(temp2->prn, temp3->prn);
swap(temp2->name, temp3->name);
}
}
}
}
void ll::display()
{
cout << "\n\tDisplaying Members" << endl;
node* temp = head;
if (temp == NULL)
{
cout << "---Nothing to display---" << endl;
cout << "---Empty linked list---" << endl;
}
while (temp != NULL)
{
cout <<"Name:"<<temp->name << endl;
cout << "PRN:" << temp->prn << endl;
temp = temp->next;
}
}
void ll::disp_rev(node* start)
{
if (start->next == NULL)
{
cout << "Name: " << start->name << endl;
cout << "PRN: " << start->prn << endl;
}
else
{
disp_rev(start->next);
cout << "Name: " << start->name << endl;
cout << "PRN: " << start->prn << endl;
}
}
void ll::count()
{
int count = 0;
node* start = head;
while (start != NULL)
{
count++;
start = start->next;
}
cout << "Total Members: " << count << endl;
}
int main()
{
int ch, ch2;
int prn,prn2,prn3;
ll a;
cout << "\n\tDIV A" << endl;
do
{
cout << "Select Your Choice" << endl;
cout << "\n\t1.Add President" << endl;
cout << "\n\t2.Add Member" << endl;
cout << "\n\t3.Add Secretary" << endl;
cout << "\n\t4.Delete President" << endl;
cout << "\n\t5.Delete Member" << endl;
cout << "\n\t6.Delete Secretary" << endl;
cout << "\n\t7.Display Club Member" << endl;
cout << "\n\t8.Display Club Members in Reverse" << endl;
cout << "\n\t9.Total Members Count" << endl;
cout << "\n\t10.Exit" << endl;
cin >> ch;
switch (ch)
{
case 1:
a.insert_front();
break;
case 2:
cout << "Enter PRN after which you want ?" << endl;
cin >> prn;
a.insert_between(prn);
break;
case 3:
a.insert_back();
break;
case 4:
a.del_front();
break;
case 5:
cout << "Enter PRN You want to delete" << endl;
cin >> prn2;
a.del_between(prn2);
break;
case 6:
a.del_back();
break;
case 7:
a.display();
break;
case 8:
a.disp_rev(a.head);
break;
case 9:
a.count();
break;
case 10:
cout << "Thank You !!!" << endl;
break;
default:cout << "Invalid Choice" << endl;
}
} while (ch !=10 );
cout << "\n\tDIV B " << endl;
ll b;
do
{
cout << "Select Your Choice" << endl;
cout << "\n\t1.Add President" << endl;
cout << "\n\t2.Add Member" << endl;
cout << "\n\t3.Add Secretary" << endl;
cout << "\n\t4.Display" << endl;
cout << "\n\t5.Exit" << endl;
cin >> ch2;
switch (ch2)
{
case 1:
b.insert_front();
break;
case 2:
cout << "Enter PRN after which you want ?" << endl;
cin >> prn3;
b.insert_between(prn3);
break;
case 3:
b.insert_back();
break;
case 4:
b.display();
break;
case 5:cout << "Thank You !!!" << endl;
break;
default:cout << "Invalid Choice" << endl;
}
} while (ch2 != 5);
ll c;
cout << "\n\tConcatenating both list" << endl;
c.concate(a.head, a.tail, b.head);
c.display();
cout << "\n\tSorting Combined list" << endl;
c.sort();
c.display();
return 0;
}