-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLevel_2_Task 3_Basic Data Structure Implementation.cpp
More file actions
495 lines (393 loc) · 9.92 KB
/
Level_2_Task 3_Basic Data Structure Implementation.cpp
File metadata and controls
495 lines (393 loc) · 9.92 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
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
#include <iostream>
#include <limits>
#define SIZE_S 5
#define SIZE_Q 5
using namespace std;
struct Node {
int data;
Node* next;
};
// Implement DS --------------------using both Array & Linked List-------------------------------------
// Stack using array
int stack_arr[SIZE_S], top = -1;
// Stack using list
Node* stack_head = nullptr;
int list_top = -1;
// Queue using array
int queue_arr[SIZE_Q];
int front = -1, rear = -1;
// Queue using list
Node* queue_head = nullptr;
int list_front, list_rear = -1;
void sanitizeInput (int& choice) { // pass by reference
if (!cin >> choice) {
cin.clear ();
cin.ignore (numeric_limits<streamsize> :: max (), '\n');
}
};
// DS Functions -------------------------------------------------------------------------
// Stack using Array
void array_push ();
void array_pop ();
void array_stack ();
// Stack using List
void list_push ();
void list_pop ();
void list_stack ();
// Queue using Array
void array_enqueue ();
void array_dequeue ();
void array_queue ();
// Queue using List
void list_enqueue ();
void list_dequeue ();
void list_queue ();
int main () {
cout << "-------------------------------------------------------------\n";
cout << "\t Basic Data Structure Implementation";
cout << "\n-------------------------------------------------------------\n";
int choice = 0;
while (choice != 3) {
cout << "\n\t1. Stack\n\t2. Queue\n\t3. Exit program\n\n";
cout << "Enter your choice: ";
cin >> choice;
sanitizeInput (choice);
if (choice == 1) {
cout << "Implement the Stack using:\n\n\t1. Array\n\t2. Linked List\n\n";
cout << "Enter your choice: ";
cin >> choice;
if (choice == 1) {
cout << "Stack implemented using Array.\n";
choice = 0;
while (choice != 4) {
cout << "\n-------------------------Stack Operations-------------------\n";
cout << "\n\t1. Push\n\t2. Pop\n\t3. Display Stack\n\t4. Exit\n\n";
cout << "Enter your choice: ";
cin >> choice;
sanitizeInput (choice);
switch (choice) {
case 1:
cout << "Push operation:\n";
array_push ();
break;
case 2:
cout << "Pop operation:\n";
array_pop ();
break;
case 3:
cout << "Display Stack:\n";
array_stack ();
break;
case 4:
cout << "Stack program exit.\n";
break;
default:
cout << "Invalid choice! Please enter a number between 1 and 4.\n";
}
}
}
else if (choice == 2) {
cout << "Stack implemented using Linked List.\n";
choice = 0;
while (choice != 4) {
cout << "\n-------------------------Stack Operations-------------------\n";
cout << "\n\t1. Push\n\t2. Pop\n\t3. Display Stack\n\t4. Exit\n\n";
cout << "Enter your choice: ";
cin >> choice;
sanitizeInput (choice);
switch (choice) {
case 1:
cout << "Push operation:\n";
list_push ();
break;
case 2:
cout << "Pop operation:\n";
list_pop ();
break;
case 3:
cout << "Display Stack:\n";
list_stack ();
break;
case 4:
cout << "Stack program exit.\n";
break;
default:
cout << "Invalid choice! Please enter a number between 1 and 4.\n";
}
}
}
else {
cout << "Invalid choice! Please enter a number between 1 and 2\n";
}
}
else if (choice == 2) {
cout << "Implement the Queue using:\n\n\t1. Array\n\t2. Linked List\n\n";
cout << "Enter your choice: ";
cin >> choice;
sanitizeInput (choice);
if (choice == 1) {
cout << "Queue implemented using Array.\n";
choice = 0;
while (choice != 4) {
cout << "\n-------------------------Queue Operations-------------------\n";
cout << "\n\t1. Enqueue\n\t2. Dequeue\n\t3. Display Queue\n\t4. Exit\n\n";
cout << "Enter your choice: ";
cin >> choice;
sanitizeInput (choice);
switch (choice) {
case 1:
cout << "Enqueue operation:\n";
array_enqueue ();
break;
case 2:
cout << "Dequeue operation:\n";
array_dequeue ();
break;
case 3:
cout << "Display Queue:\n";
array_queue ();
break;
case 4:
cout << "Queue program exit.\n";
break;
default:
cout << "Invalid choice! Please enter a number between 1 and 4.\n";
}
}
}
else if (choice == 2) {
cout << "Queue implemented using Linked List.\n";
choice = 0;
while (choice != 4) {
cout << "\n-------------------------Queue Operations-------------------\n";
cout << "\n\t1. Enqueue\n\t2. Dequeue\n\t3. Display Queue\n\t4. Exit\n\n";
cout << "Enter your choice: ";
cin >> choice;
sanitizeInput (choice);
switch (choice) {
case 1:
cout << "Enqueue operation:\n";
list_enqueue ();
break;
case 2:
cout << "Dequeue operation:\n";
list_dequeue ();
break;
case 3:
cout << "Display Queue:\n";
list_queue ();
break;
case 4:
cout << "Queue program exit.\n";
break;
default:
cout << "Invalid choice! Please enter a number between 1 and 4.\n";
}
}
}
}
else if (choice == 3) {
cout << "Program exited successfully. Thanks a lot! I love C++ programming!\n";
}
else {
cout << "Invalid choice! Please enter a number between 1 and 3\n";
}
}
return 0;
}
// ---------------Function Definitions----------------------------------------------
// Stack using array ---------------------------------------------------------------
void array_push () {
if (top == SIZE_S - 1) {
cout << "\nStack overflow! Can't insert.\n";
return;
}
int x;
cout << "Enter element to be pushed: ";
cin >> x;
stack_arr[++top] = x;
cout << "Element " << x << " inserted.\n";
}
void array_pop () {
if (top == - 1) {
cout << "\nStack underflow! Can't delete.\n";
return;
}
cout << "Element " << stack_arr[top] << " deleted.\n";
top--;
}
void array_stack () {
if (top == - 1) {
cout << "\nStack is empty.\n";
return;
}
for (int i = 0; i < top + 1; i++) {
cout << stack_arr[i] << " ";
}
cout << "\n";
}
// Stack using list---------------------------------------------------------------
void list_push () {
if (list_top == 4) {
cout << "\nStack overflow! Can't insert.\n";
return;
}
int x;
cout << "Enter element to be pushed: ";
cin >> x;
Node* ptr = new Node ();
ptr -> data = x;
ptr -> next = nullptr;
if (stack_head == nullptr) {
stack_head = ptr;
list_top++;
cout << "Element " << x << " inserted.\n";
return;
}
Node* temp = stack_head;
while (temp -> next != nullptr) {
temp = temp -> next;
}
// Insert at the end
temp -> next = ptr;
cout << "Element " << x << " inserted.\n";
list_top++;
}
void list_pop () {
if (list_top == -1) {
cout << "\nStack underflow! Can't delete.\n";
return;
}
if (stack_head -> next == nullptr) {
// List has only one node
cout << "Element " << stack_head -> data << " deleted.\n";
delete stack_head;
stack_head = nullptr;
list_top--;
return;
}
Node* temp = stack_head;
// Traverse to second last node
while (temp -> next -> next != nullptr) {
temp = temp -> next;
}
cout << "Element " << temp -> next -> data << " deleted.\n";
delete temp -> next; // Delete last node
temp -> next = nullptr;
list_top--;
}
void list_stack () {
if (stack_head == nullptr) {
cout << "\nStack is empty.\n";
return;
}
Node* temp = stack_head;
while (temp != nullptr) {
cout << temp -> data << " ";
temp = temp -> next;
}
cout << "\n";
}
// Queue using array ---------------------------------------------------------------
void array_enqueue () {
if (rear == SIZE_Q - 1) {
cout << "\nQueue is full! Can't insert.\n";
return;
}
if (front == -1) front++;
int x;
cout << "Enter element to be pushed: ";
cin >> x;
queue_arr[++rear] = x;
cout << "Element " << x << " inserted.\n";
}
void array_dequeue () {
if (front == -1) {
cout << "\nQueue is empty! Can't delete.\n";
return;
}
cout << "Element " << queue_arr[front] << " deleted.\n";
front++;
if (front > rear) front = -1, rear = -1;
}
void array_queue () {
if (front == -1) {
cout << "\nQueue is empty! \n";
return;
}
for (int i = front; i < rear + 1; i++) {
cout << queue_arr[i] << " ";
}
cout << "\n";
}
// Queue using list ---------------------------------------------------------------
void list_enqueue () {
if (list_rear == 4) {
cout << "\nQueue is full! Can't insert.\n";
return;
}
if (list_front == -1) list_front++;
int x;
cout << "Enter element to be pushed: ";
cin >> x;
Node* ptr = new Node ();
ptr -> data = x;
ptr -> next = nullptr;
if (queue_head == nullptr) {
queue_head = ptr;
list_rear++;
cout << "Element " << x << " inserted.\n";
return;
}
Node* temp = queue_head;
while (temp -> next != nullptr) {
temp = temp -> next;
}
// Insert at the end
temp -> next = ptr;
cout << "Element " << x << " inserted.\n";
list_rear++;
}
void list_dequeue () {
if (queue_head == nullptr) {
cout << "\nQueue is empty! Can't delete.\n";
return;
}
if (queue_head == nullptr) {
cout << "\nQueue is empty! Can't delete.\n";
return;
}
if (queue_head -> next == nullptr) {
// List has only one node
cout << "Element " << queue_head -> data << " deleted.\n";
delete queue_head;
queue_head = nullptr;
list_front = -1;
list_rear = -1;
return;
}
Node* temp = queue_head;
// Delete the first node
temp = temp -> next;
cout << "Element " << queue_head -> data << " deleted.\n";
delete queue_head;
queue_head = temp;
list_front++;
// If queue becomes empty after deletion
if (queue_head == nullptr) {
list_front = -1;
list_rear = -1;
}
}
void list_queue () {
if (queue_head == nullptr) {
cout << "\nQueue is empty! \n";
return;
}
Node* temp = queue_head;
while (temp != nullptr) {
cout << temp -> data << " ";
temp = temp -> next;
}
cout << "\n";
}