-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQueueUsingArray.cpp
206 lines (179 loc) · 4.46 KB
/
QueueUsingArray.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
#include<iostream> // @author Zaid Aly
using namespace std;
int const size = 5;
int Queue[size];
int Front = -1;
int Rear = -1;
void EnQueue(); // for adding values to the Rear by R++
void DeQueue(); // for removing values from the Front by T++
bool isFull(); // to check if the Queue is Full
bool isEmpty(); // to check if the Queue is Empty
int FrontElement(); // for displaying First Element
int RearElement(); // for Displaying Rear Element
void Display(); // for Displaying result
int main()
{
int choice;
char ch;
do
{
cout<<"\t\t############## Queue ##############\n";
cout<<"\t\t1: En-Queue\n";
cout<<"\t\t2: De-Queue\n";
cout<<"\t\t3: isFull\n";
cout<<"\t\t4: isEmpty\n";
cout<<"\t\t5: Front\n";
cout<<"\t\t6: Rear\n";
cout<<"\t\t7: Display\n";
cout<<"Select any option : ";
cin>>choice;
switch(choice)
{
case 1:
EnQueue();
break;
case 2:
DeQueue();
break;
case 3:
if(isFull()==true)
cout<<"\nQueue Full\n";
else
{
cout<<"\nQueue is Empty\n";
}
break;
case 4:
if(isEmpty()==true)
cout<<"\nQueue is Empty\n";
else
{
cout<<"\nQueue is Not Empty\n";
}
break;
case 5:
if(isEmpty() == true)
{
cout<<"The Queue is Empty\n";
}
else
{
cout<<"\nThe Front Element is \n";
cout<<FrontElement()<<endl;
}
break;
case 6:
if(isEmpty() == true)
{
cout<<"The Queue is Empty\n";
}
else
{
cout<<"\nThe Rear Element is \n";
cout<<RearElement()<<endl;
}
break;
case 7:
Display();
break;
default:
cout<<"Invalid input\n";
}
cout<<"Do u want to add more values (Y/N)\n";
cin>>ch;
}while(ch=='Y'||ch=='y');
}
// ############################################# EN-Queue ##############################################//
void EnQueue()
{
int value;
if(isFull()== true)
{
cout<<"\nQueue is Full you cannot add more Values \n";
}
else
{
if(isEmpty() == true)
{
Front++;
}
cout<<"Enter the element to beQueued\n";
cin>>value;
Queue[++Rear] = value;
Display();
}
}
// #################################################################################################//
// ########################################## DE-QUEUE ##########################################//
void DeQueue()
{
if(isEmpty()==true)
{
cout<<"\nQueue is Empty\n";
}
else if(Front==Rear)// to get back to the first location // it means u r on last location // or u can write Front > Rear==> Underflow
{
Front = -1;
Rear = -1;
}
else // else move forward and delete the backward element
{
Front = Front+1;
}
}
// ##################################################################################################//
// ############################################# is Full #########################################//
bool isFull()
{
if(Rear == size-1)
{
return true;
}
else
{
return false;
}
}
// ############################################# ######## #########################################//
// ############################################## is Empty #########################################//
bool isEmpty()
{
if(Front== -1 && Rear== -1)
{
return true;
}
else
{
return false;
}
}
// ##################################################################################################//
// ################################################ Front Element #######################################//
int FrontElement()
{
return Queue[Front];
}
// ##################################################################################################//
// ################################################ Rear Element ########################################//
int RearElement()
{
return Queue[Rear];
}
// #############################################################################################//
// ################################################# Display ###################################//
void Display()
{
if(isEmpty()==true)
{
}else
{
cout<<"\n##########################";
cout<<"\nThe Element in the Queue are\n";
for(int i=Front; i<=Rear; i++) // from first to last or from first to rear
{
cout<<Queue[i]<<" ";
}
cout<<"\n##########################\n";
}
}
// #############################################################################################//