-
Notifications
You must be signed in to change notification settings - Fork 0
/
Queue.cpp
111 lines (72 loc) · 1.65 KB
/
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
111
#include<iostream>
#include "Queue.h"
#include "Logger.h"
template <class T>
Queue<T>::~Queue()
{
logger("Queue destructor called...");
delete[] this->Array;
}
template <class T>
Queue<T>::Queue(int Size)
{
logger("Queue constructor called...");
this->Array=new T[Size];
this->Capacity=Size;
this->Front=0;
this->Rear=-1;
this->Count=0;
}
template <class T>
void Queue<T>::enqueue(T X)
{
if(isFull())
{
std::cout << "Queue overflow!" << std::endl;
logger("Queue overflow!");
exit(EXIT_FAILURE);
}
this->Rear=(this->Rear+1)%this->Capacity;
this->Array[this->Rear]=X;
this->Count++;
}
template <class T>
T Queue<T>::dequeue()
{
if(isEmpty())
{
std::cout << "Queue underflow!" << std::endl;
logger("Queue underflow!");
exit(EXIT_FAILURE);
}
T X=this->Array[this->Front];
this->Front=(this->Front+1)%this->Capacity;
this->Count--;
return X;
}
template <class T>
T Queue<T>::peek()
{
if(isEmpty())
{
std::cout << "Queue underflow!" << std::endl;
logger("Queue underflow!");
exit(EXIT_FAILURE);
}
return this->Array[this->Front];
}
template <class T>
int Queue<T>::size()
{
return this->Count;
}
template <class T>
bool Queue<T>::isEmpty()
{
return (size()==0);
}
template <class T>
bool Queue<T>::isFull()
{
return (size()==this->Capacity);
}