forked from MukulCode/CodingClubIndia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqueue(array and LL).cpp
322 lines (243 loc) · 4.61 KB
/
queue(array and LL).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
#include<iostream>
#define MAX 10
using namespace std;
//-------------------Queue using Array------------------
class Queue_array
{
public:
int que[MAX];
int front,rear;
int data;
Queue_array()
{
front=-1;
rear=-1;
}
bool isEmpty()
{
if(front==-1)
{
return true;
}
else
{
return false;
}
}
bool isFull()
{
if(rear==MAX-1)
{
return true;
}
else
{
return false;
}
}
void enqueue();
void dequeue();
void display();
};
void Queue_array :: enqueue()
{
if(isFull())
{
cout<<"\nQueue is Full";
}
else
{
cout<<"\nEnter element in queue: ";
cin>>data;
rear++;
que[rear]=data;
if(front==-1)
{
front=0;
}
}
}
void Queue_array :: dequeue()
{
if(isEmpty())
{
cout<<"\nCan't perform delete operation\n";
}
else
{
int item=que[front];
if(front==rear)
{
front=rear=-1;
}
else
{
front++;
}
}
}
void Queue_array :: display()
{
if(isEmpty())
{
cout<<"\nQueue is empty";
}
else
{
for(int i=front;i<=rear;i++)
{
cout<<"| "<<que[i]<<" |";
}
}
}
//-----------------------Queue using LL---------------------
class node
{
public:
int data;
node *next;
};
class Queue_LL
{
public:
node *front, *rear;
Queue_LL()
{
front=NULL;
rear=NULL;
}
bool isEmpty()
{
if(front==NULL)
{
return true;
}
else
{
return false;
}
}
void enqueue();
void dequeue();
void display();
};
void Queue_LL :: enqueue() //enqueue
{
node *temp;
temp=new node;
cout<<"\nEnter data: ";
cin>>temp->data;
temp->next=NULL;
if(rear==NULL)
{
front=rear=temp;
}
else
{
rear->next=temp;
rear=rear->next;
}
}
void Queue_LL :: dequeue() //dequeue
{
if(isEmpty())
{
cout<<"\nCan't perform delete operation";
}
else
{
int x=front->data;
if(front==rear)
{
front=rear=NULL;
}
else
{
front=front->next;
delete front;
}
}
}
void Queue_LL :: display() //display
{
if(isEmpty())
{
cout<<"\nQueue is Empty";
}
node *ptr;
ptr=front;
cout<<"\n";
while(ptr!=NULL)
{
cout<<"| "<<ptr->data<<" |";
ptr=ptr->next;
}
}
int main()
{
char start='y';
int ch,ch1,ch2;
Queue_array q1; //object for array
Queue_LL q2; //object for linked list
while(start=='y')
{
cout<<"1. Queue using array\n2. Queue using Linked list";
cout<<"\n\nEnter your choice: ";
cin>>ch;
switch(ch)
{
case 1:
while(start=='y')
{
cout<<"\n1)Insert\n2)Delete\n";
cout<<"\nSelect operation: ";
cin>>ch;
switch(ch)
{
case 1:
q1.enqueue();
q1.display();
break;
case 2:
q1.dequeue();
q1.display();
break;
default:
cout<<"\nSorry!!! you have entered wrong choice";
}
cout<<"\n\nDo you want to continue with array implementation (y/n): ";
cin>>start;
}
break;
case 2:
while(start=='y')
{
cout<<"\n1)Insert\n2)Delete\n";
cout<<"\nSelect operation: ";
cin>>ch;
switch(ch)
{
case 1:
q2.enqueue();
q2.display();
break;
case 2:
q2.dequeue();
q2.display();
break;
default:
cout<<"\nSorry!!! you have entered wrong choice";
}
cout<<"\n\nDo you want to continue with Linked list implementation (y/n): ";
cin>>start;
}
break;
default:
cout<<"\nSorry!!! you have entered wrong choice";
}
cout<<"\n\nBack to implementation choice (y/n): \n";
cin>>start;
}
cout<<"\nThank you !!!";
return 0;
}