-
Notifications
You must be signed in to change notification settings - Fork 73
/
Circular_Queue_Using_array.cpp
134 lines (116 loc) · 2.96 KB
/
Circular_Queue_Using_array.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
#include <iostream>
using namespace std;
#define size 100
class queue{
int queue[size];
int rear = -1;
int front = -1;
public:
bool isFull(){
if ((rear+1) % size == front){
return true;
}
else{
return false;
}
}
bool isEmpty(){
if (rear==-1 && front==-1){
return true;
}
else{
return false;
}
}
void enqueue(int n){
if(isFull()){
cout << "\nQueue is full." << endl;
return;
}
else if (isEmpty()){
front = rear = 0;
queue[rear] = n;
}
else{
rear = (rear+1)%size;
queue[rear]= n;
}
}
void dequeue(){
if(isEmpty()){
cout << "\nCannot delete.Queue is empty" << endl;
}
else if(rear==front){
front = rear = -1;
}
else{
cout << "\nElement deleted is : " << queue[front] <<endl;
front = (front+1)%size;
display();
}
}
void display(){
if (isEmpty()){
cout << "\nQueue is empty." << endl;
}
else{
cout << "\nValues in the queue are : " << endl;
int i = front;
while(i != rear){
cout << queue[i] << " " ;
i = (i+1)%size;
}
cout << queue[rear] << endl;
}
}
void peek(){
if(isEmpty()){
cout << "\nQueue is Empty." << endl;
}
else{
cout << "\nFirst element is : " << queue[front] << endl;
}
}
};
int main() {
queue q1;
int choice;
do{
cout << "\n===============MENU===============" << endl;
cout << "1. Enqueue" << endl;
cout << "2. Dequeue" << endl;
cout << "3. Display" << endl;
cout << "4. Peek" << endl;
cout << "5. Exit" << endl;
cout << "Enter your choice : " << flush;
cin >> choice;
switch(choice){
case 1:
int num, value;
cout << "\nEnter number of values to Enqueue : " << flush;
cin >> num;
for(int i=0; i < num; i++){
cout << "Enter value " << i+1 << " : ";
cin >> value;
q1.enqueue(value);
}
break;
case 2:
q1.dequeue();
break;
case 3:
q1.display();
break;
case 4:
q1.peek();
break;
case 5:
exit(0);
break;
default:
cout << "Invalid Input!!!" << endl;
exit(0);
break;
}
}while(choice != 5);
}