-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCircularQueue.cpp
92 lines (77 loc) · 1.63 KB
/
CircularQueue.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
#include <iostream>
using namespace std;
class CircularQueue // cricular queue
{
int *arr;
// current size and capacity of array
int currSize, cap;
// front and rear pointers
int f, r;
public:
// constructor to initialize array
CircularQueue(int size)
{
cap = size;
arr = new int[cap];
currSize = 0;
f = 0, r = -1;
}
void push(int data) // to push element in circular queue
{
if (currSize == cap) // to check if Circular queue is full
{
cout << "CQ is full\n";
return;
}
r = (r + 1) % cap;
arr[r] = data;
currSize++;
}
void pop() // to pop element from circular queue
{
if (empty()) // to check if Circular queue is full
{
cout << "CQ is full\n";
return;
}
f = (f + 1) % cap;
currSize--;
}
int front() // to return front value of circular queue
{
if (empty()) // to check if Circular queue is full
{
cout << "CQ is full\n";
return -1;
}
return arr[f];
}
bool empty() // to check if circular queue is empty
{
return currSize == 0;
}
void printArr() // to print array
{
for (int i = 0; i < cap; i++)
{
cout << arr[i] << " ";
}
cout << endl;
}
};
int main()
{
CircularQueue cq(3);
cq.push(1);
cq.push(2);
cq.push(3);
cq.pop();
cq.push(4);
while (!cq.empty())
{
cout << cq.front() << " ";
cq.pop();
}
cout << endl;
return 0;
}