-
Notifications
You must be signed in to change notification settings - Fork 254
/
Copy path02 C++ Queue using Array.cpp
76 lines (68 loc) · 1.98 KB
/
02 C++ 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
#include<iostream>
#include<stdlib.h>
using namespace std;
class Queue
{
private:
int front; // front is used for deletion
int rear; // rear is used for insertion
int size; // size of the queue
int* Q; // dynamically allocated space for queue
public:
Queue() //Non-parameterized constructor //front and rear are assigned as -1 //indicates Queue is empty
{
front = rear = -1;
size = 10; //Default size of the Queue will be 10
Q = new int[size]; //Memory is allocated for the Queue in the HEAP
}
Queue(int size) //Parameterized constructor with size as the parameter
{
front = rear = -1;
this->size = size;
Q = new int[this->size];
}
void enqueue(int x); // declaration for insertion element in the queue
int dequeue(); // declaration for deletion of the element queue
void display(); // declaration for displaying the queue
};
void Queue::enqueue(int x) // passing the value as parameter for insertion
{
if (rear == size - 1) // condition for checking queuefull
cout << "Queue is Full" << endl;
else
{
rear++; // increament the rear and then insert the value in the queue
Q[rear] = x; // insertion of the element.
}
}
int Queue::dequeue()
{
int x = -1; // initially set the value of the x to -1; setting
if (front == rear) // condition for cheking the queue empty
cout << "Queue is Empty" << endl;
else
{
front++; // increment the front and take out the element
x = Q[front];
}
return x; // return the deleted value
}
void Queue::display()
{
int i;
for (i = front + 1; i <= rear; i++)
cout << Q[i] << " ";
cout << endl;
}
int main()
{
Queue q(5); // Creating an instance for class and setting the size as 5
q.enqueue(10); // inserting the value in queue
q.enqueue(20);
q.enqueue(30);
q.enqueue(40);
q.display(); // displaying queue
q.dequeue(); // deleting the value from the queue.
q.display(); // then displaying it after deletion
return 0;
}