-
Notifications
You must be signed in to change notification settings - Fork 7
/
stack and queue.cpp
418 lines (402 loc) · 7.29 KB
/
stack and queue.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
#include <iostream>
#include <stdlib.h>
#include <conio.h>
using namespace std;
void stck();
void que();
void stck_list();
void que_list();
void stck_ins_arr();
void stck_del_arr();
void stck_print();
void que_ins_arr();
void que_del_arr();
void que_print();
void stck_ins_list();
void stck_del_list();
void stck_print_list();
void que_ins_list();
void que_del_list();
void que_print_list();
int top = -1;
int st[100];
int fron = -1;
int endi = -1;
int q[100];
struct node
{
int data;
node *next;
};
node *head = NULL;
void stck_ins_arr()
{
system("cls");
int data;
cout << "Enter the data: ";
cin >> data;
if (top==-1)
{
top++;
st[top] = data;
}
else
{
top++;
st[top] = data;
}
cout << "\nElement inserted succesfully\n";
getch();
stck();
}
void stck_del_arr()
{
system("cls");
if (top==-1)
{
cout<<"No elemnts found to delete\n";
}
else
{
top--;
cout<<"\nElement deleted succesfully\n";
}
getch();
stck();
}
void stck_print()
{
system("cls");
cout << "\n\n\n\t\tThe Representation of stack is as follows\n\n";
for (int i = top; i >= 0; i--)
{
if (i == top)
{
cout << "\t\t\t" << st[i] << "<-"
<< "\n"
<< "\t\t\t-"
<< "\n";
}
else
{
cout << "\t\t\t" << st[i] << "\n"
<< "\t\t\t-"
<< "\n";
}
}
getch();
stck();
}
void stck()
{
system("cls");
cout<<"\n\t\t STACK AS ARRAY\n";
cout<<"Choose any option\n";
cout<<"\n1. Insert\n2. Delete\n3. Print\n";
int n;
cin>>n;
switch (n)
{
case 1:
stck_ins_arr();
break;
case 2:
stck_del_arr();
break;
case 3:
stck_print();
break;
default:
cout << "\nInvalid choice\n";
break;
}
}
void que_ins_arr()
{
system("cls");
int data;
cout<<"\nEnter data to be inserted: ";
cin>>data;
if (fron==-1)
{
endi=fron=0;
q[fron]=data;
}
else
{
endi++;
q[endi]=data;
}
cout<<"\nElement inserted succesfully\n";
getch();
que();
}
void que_del_arr()
{
system("cls");
if (fron==-1)
{
cout<<"\nNot enough elements to delete\n";
}
else
{
fron++;
cout<<"\nElement deleted succesfully\n";
}
getch();
que();
}
void que_print()
{
system("cls");
cout << "\n\n\n\t\tThe Representation of queue is as follows\n\n";
cout << "\t\t\t\t";
for (int i=endi;i>=fron;i--)
{
cout<<q[i]<<" | ";
}
getch();
que();
}
void que()
{
system("cls");
cout<<"\n\t\t QUEUE AS ARRAY\n";
cout<<"Choose any option\n";
cout<<"\n1. Insert\n2. Delete\n3. Print\n";
int n;
cin>>n;
switch (n)
{
case 1:
que_ins_arr();
break;
case 2:
que_del_arr();
break;
case 3:
que_print();
break;
default:
cout<<"\nInvalid choice\n";
break;
}
}
void stck_ins_list()
{
system("cls");
int data;
cout<<"\nEnter data: ";
cin>>data;
if (head==NULL)
{
node *temp=new node;
temp->data=data;
temp->next=NULL;
head=temp;
}
else
{
node *temp=new node;
temp->data=data;
temp->next=head;
head=temp;
}
cout<<"\nElement insereted successfully\n";
getch();
stck_list();
}
void stck_del_list()
{
system("cls");
node *temp;
if (head==NULL)
{
cout<<"\nNot enough nodes!!\n";
}
else
{
temp=head;
head=head->next;
free(temp);
}
cout<<"\nElement deleted succesfully!!\n";
getch();
stck_list();
}
void stck_print_list()
{
system("cls");
node *temp;
temp = head;
if (head==NULL)
{
cout<<"\n\t\tLIST EMPTY!!\n";
}
else
{
cout<<"\n\n\n\t\tThe Representation of stack(linked list) is as follows\n\n";
int i=0;
while (temp != NULL)
{
cout<<"\t\t\t" << temp->data << "\n"
<<"\t\t\t-"
<<"\n";
temp=temp->next;
}
}
getch();
stck_list();
}
void stck_list()
{
system("cls");
cout<<"\n\t\t STACK AS LINKED LIST\n";
cout<<"Choose any option\n";
cout<<"\n1. Insert\n2. Delete\n3. Print\n";
int n;
cin>>n;
switch (n)
{
case 1:
stck_ins_list();
break;
case 2:
stck_del_list();
break;
case 3:
stck_print_list();
break;
default:
cout<<"\nInvalid choice\n";
break;
}
}
void que_ins_list()
{
system("cls");
int data;
cout<<"\nEnter data: ";
cin>>data;
if (head==NULL)
{
node *temp=new node;
temp->data=data;
temp->next=NULL;
head=temp;
}
else
{
node *temp=new node;
temp->data=data;
temp->next=head;
head=temp;
}
cout<<"\nElement inserted succesfully\n";
getch();
que_list();
}
void que_del_list()
{
system("cls");
node *temp;
node *temp1;
int l=0;
temp=head;
temp1=head;
if (head==NULL)
{
cout<<"\nNot enough nodes!!\n";
}
else
{
node *temp2;
while (temp->next!=NULL)
{
temp=temp->next;
l++;
}
while (l-1>0)
{
temp1=temp1->next;
l--;
}
temp1->next=NULL;
}
cout<<"\nElement deleted succesfully!!\n";
getch();
que_list();
}
void que_print_list()
{
system("cls");
node *temp;
temp=head;
if (head==NULL)
{
cout<<"\n\t\tLIST EMPTY!!\n";
}
else
{
cout<<"\n\n\n\t\tThe Representation of queue is as follows\n\n";
cout<<"\t\t\t\t";
while (temp!=NULL)
{
cout<<temp->data << " | ";
temp=temp->next;
}
}
getch();
que_list();
}
void que_list()
{
system("cls");
cout<<"\n\t\t QUEUE AS LINKED LIST\n";
cout<<"Choose any option\n";
cout<<"\n1. Insert\n2. Delete\n3. Print\n";
int n;
cin>>n;
switch (n)
{
case 1:
que_ins_list();
break;
case 2:
que_del_list();
break;
case 3:
que_print_list();
break;
default:
cout<<"\nInvalid choice\n";
break;
}
}
int main()
{
cout<<"\nYou want to work with: ";
cout<<"\n1. Stack(as array)\n2. Queue(as array)\n3. Stack(as linked list)\n4. Queue(as linked list)\n";
cout<<"Enter choice: ";
int n;
cin>>n;
switch (n)
{
case 1:
stck();
break;
case 2:
que();
break;
case 3:
stck_list();
break;
case 4:
que_list();
break;
default:
cout<<"Invalid Choice";
break;
}
return 0;
}