-
Notifications
You must be signed in to change notification settings - Fork 0
/
Circular queue.cpp
110 lines (88 loc) · 1.75 KB
/
Circular 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
#include <iostream>
#define MAX 5
using namespace std;
class CircularQueue {
public:
int queuee[ MAX], front, rear;
CircularQueue() {
front =rear= -1;
}
bool isFull() {
if (front == 0 && rear == MAX - 1) {
return true;
}
if (front == rear + 1) {
return true;
}
return false;
}
bool isEmpty() {
if (front == -1)
return true;
else
return false;
}
void enQueue(int num) {
if (isFull()) {
cout << " \nQueue is full"<<endl;
} else {
if (front == -1) front = 0;
rear = (rear + 1) % MAX;
queuee[rear] = num;
cout <<"\nItem Inserted " << num ;
}
}
int deQueue() {
int num;
if (isEmpty()) {
cout << "Queue is empty" << endl;
} else {
num = queuee[front];
if (front == rear) {
front = -1;
rear = -1;
}
else {
front = (front + 1) %MAX;
}
return (num);
}
}
void display() {
int i;
if (isEmpty()) {
cout << endl<< "Empty Queue" << endl;
} else {
cout << endl<< "Total Items : ";
for (i = front; i != rear; i = (i + 1) % MAX)
cout << queuee[i];
cout << queuee[i]<<endl;
}
}
};
int main() {
CircularQueue c;
c.deQueue();
c.enQueue(1);
c.enQueue(2);
c.enQueue(3);
c.enQueue(4);
c.enQueue(5);
c.enQueue(6);
c.display();
int num = c.deQueue();
if (num != -1)
cout << endl
<< "Item Deleted " << num;
num = c.deQueue();
if (num != -1)
cout << endl
<< "Item Deleted " << num;
c.display();
c.enQueue(7);
c.display();
c.enQueue(8);
c.display();
c.enQueue(8);
return 0;
}