forked from rylp/DSA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
4.1_pin_club
511 lines (430 loc) · 8.33 KB
/
4.1_pin_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
506
507
508
509
510
#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_start();
void insert_between(int key);
void insert_end();
void del_start();
void del_between(int key);
void del_end();
void count();
void display();
void disp_rev(node* start);
void conc(node* ahead, node* bhead, node* atail);
void sort();
};
void ll::count()
{
int flag = 0;
node* start = head;
while (start != NULL)
{
flag++;
start = start->next;
}
cout << "Total Members are: " << flag << endl;
}
void ll::display()
{
node* start = head;
while (start != NULL)
{
cout <<"Name : "<< start->name << endl;
cout <<"PRN: "<< start->prn << endl;
start = start->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::insert_start()
{
node* nn = new node;
cout << "Enter Name of President" << endl;
cin >> nn->name;
cout << "Enter PRN of President" << endl;
cin >> nn->prn;
nn->next = NULL;
if (head == NULL && tail == NULL)//empty
{
head = nn;
tail = nn;
cout << "---Inserted in Empty Linked List---" << endl;
cout << "---This Member is currently Both Prez and Sec---" << endl;
}
else//not empty
{
nn->next = head;
head = nn;
cout << "---Inserted at Start--" << endl;
cout << "---This Member is now Prez" << endl;
}
}
void ll::insert_between(int key)
{
int flag = 0;
node* nn = new node;
cout << "Enter Name of Member" << endl;
cin >> nn->name;
cout << "Enter PRN of Member" << endl;
cin >> nn->prn;
nn->next = NULL;
if (head == NULL && tail == NULL)//empty . no question of check prn present or not
{
head = nn;
tail = nn;
cout << "---Inserted in Empty Linked List---" << endl;
cout << "---This Member is currently Both Prez and Sec---" << endl;
}
else // not empty. check prn present or not
{
node* start = head;
while (start != NULL)
{
if (start->prn == key)
{
flag++;
break;
}
start = start->next;
}
if (flag == 0)
{
cout << "---Invalid PRN---" << endl;
}
else if (head->next == NULL)//ie like insert end
{
tail->next = nn;
tail = nn;
cout << "---Inserted as 2nd member of linked list---" << endl;
cout << "---This member is currently Sec---" << endl;
}
else if (tail->prn == key)//insert at end
{
tail->next = nn;
tail = nn;
cout << "---Inserted at end---" << endl;
cout << "---This Member is now Sec---" << endl;
}
else //inserting between in multi-node.
{
node* cur = head;
node* after = head;
while (cur->prn != key)
{
cur = cur->next;
}
after = cur->next;
cur->next = nn;
nn->next = after;
cout << "---Inserted in proper position---" << endl;
}
}
}
void ll::insert_end()
{
node* nn = new node;
cout << "Enter Name of Secretary" << endl;
cin >> nn->name;
cout << "Enter PRN of Secretary" << endl;
cin >> nn->prn;
nn->next = NULL;
if (head == NULL && tail == NULL)//empty
{
head = nn;
tail = nn;
cout << "---Inserted in Empty Linked List---" << endl;
cout << "---This Member is currently Both Prez and Sec---" << endl;
}
else//not empty
{
tail->next = nn;
tail = nn;
cout << "---Inserted at End--" << endl;
cout << "---This Member is now Sec" << endl;
}
}
void ll::del_start()
{
if (head == NULL && tail == NULL)//empty
{
cout << "---Nothing to delete---" << endl;
}
else if(head->next==NULL)//only one node
{
node* temp = head;
head = NULL;
tail = NULL;
delete(temp);
cout << "---Deleted only Member in Club---" << endl;
cout << "---Now Empty Club---" << endl;
}
else//multiple members
{
node* temp = head;
head = head->next;
temp->next = NULL;
delete(temp);
cout << "---Deleted at start---" << endl;
}
}
void ll::del_between(int key)
{
int flag = 0;
if (head == NULL && tail == NULL)//empty
{
cout << "---Nothing to delete---" << endl;
}
else//not empty
{
node* start = head;
while (start != NULL)
{
if (start->prn == key)
{
flag++;
break;
}
start = start->next;
}
if (flag == 0)
{
cout << "---Invalid PRN---" << endl;
}
else if (head->next == NULL)//single node
{
node* temp = head;
head = NULL;
tail = NULL;
delete(temp);
cout << "---Deleted only member---" << endl;
cout << "---Now Empty---" << endl;
}
else if (head->prn == key)//del start
{
node* temp = head;
head = head->next;
temp->next = NULL;
delete(temp);
cout << "---Deleted at start---" << endl;
}
else if (tail->prn == key)//del end
{
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
{
node* temp = head;
node* prev = head;
while (temp->prn != key)
{
prev = temp;
temp = temp->next;
}
prev->next = temp->next;
temp->next = NULL;
delete(temp);
cout << "---Deleted at proper position---" << endl;
}
}
}
void ll::del_end()
{
if (head == NULL && tail == NULL)//empty
{
cout << "---Nothing to delete---" << endl;
}
else if (head->next == NULL)//only one node
{
node* temp = head;
head = NULL;
tail = NULL;
delete(temp);
cout << "---Deleted only Member in Club---" << endl;
cout << "---Now Empty Club---" << endl;
}
else//multiple members
{
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;
}
}
void ll::conc(node* ahead, node* bhead, node* atail)
{
head = ahead;
atail->next = bhead;
}
void ll::sort()
{
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++)
{
temp3 = temp2->next;
if (temp2->prn > temp3->prn)//if(a[j]>a[j+1])
{
swap(temp2->prn, temp3->prn);
swap(temp2->name, temp3->name);
}
}
}
}
int main()
{
typedef int choice;
typedef int key;
choice c1,c2,c3,c4;
key k1, k2, k3, k4, k5;
ll a;
cout << "DIV A" << endl;
do
{
cout << "\n\tEnter 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" << endl;
cout << "\n\t8.Display REVERSE" << endl;
cout << "\n\t9.Total Members" << endl;
cout << "\n\t10.Exit" << endl;
cin >> c1;
switch (c1)
{
case 1:
a.insert_start();
break;
case 2:
cout << "Enter PRN After which you want to enter" << endl;
cin >> k1;
a.insert_between(k1);
break;
case 3:
a.insert_end();
break;
case 4:
a.del_start();
break;
case 5:
cout << "Enter PRN to be deleted" << endl;
cin >> k2;
a.del_between(k2);
break;
case 6:
a.del_end();
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 (c1 !=10 );
ll b;
cout << "DIV B" << endl;
do
{
cout << "\n\tEnter 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 >> c2;
switch (c2)
{
case 1:
b.insert_start();
break;
case 2:
cout << "Enter PRN After which you want to enter" << endl;
cin >> k3;
b.insert_between(k3);
break;
case 3:
b.insert_end();
break;
case 4:
b.display();
break;
case 5:
cout << "Thank You !!!" << endl;
break;
default:cout << "Invalid Choice" << endl;
}
} while (c2 != 5);
cout << endl;
cout << "Concate Lists" << endl;
ll c;
c.conc(a.head, b.head, a.tail);
c.display();
cout << endl;
cout << "Sort" << endl;
c.sort();
c.display();
cout << endl;
return 0;
}