-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_03_circular_queue_using_array.cpp
142 lines (128 loc) · 3.72 KB
/
_03_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
135
136
137
138
139
140
141
142
// اذكر الله
// صلِ على خير خلق الله محمد
// Include necessary header file for input and output operations
#include <iostream>
using namespace std;
// Define a structure for the Queue
struct Queue
{
int front = -1; // Initialize front to -1
int rear = -1; // Initialize rear to -1
int *queue; // Pointer to the array representing the queue
int SIZE; // Maximum size of the queue
// n here refer to user input of queue size
Queue(int n)
{
SIZE = n;
// create queue with size which user entered before
queue = new int[SIZE];
}
// Check if the queue is full
bool is_Full()
{
// Check if the next position after the rear is the front
return (rear + 1) % SIZE == front;
}
// Check if the queue is empty
bool is_Empty()
{
return front == -1;
}
// Add an element to the queue
void inQueue(int element)
{
if (is_Full())
{
cout << "Queue Overflow\n";
return;
}
// add first element in queue
if (is_Empty())
front = 0;
// Circularly increment rear and add the element
rear = (rear + 1) % SIZE;
queue[rear] = element;
}
// Remove an element from the queue
void deQueue()
{
if (is_Empty())
{
cout << "Queue Underflow\n";
return;
}
if (front == rear)
{
// If there is only one element in the queue, reset front and rear to -1
front = -1;
rear = -1;
}
else
{
// Circularly increment front
front = (front + 1) % SIZE;
}
}
// Display the elements of the queue
void Display()
{
cout << "____________________________________________________________________\n";
if (is_Empty())
cout << "Your queue is empty\n";
else
{
// Display the elements from front to rear in a circular manner
int i = front;
do
{
cout << queue[i] << '\n';
i = (i + 1) % SIZE;
} while (i != (rear + 1) % SIZE);
}
cout << "____________________________________________________________________\n";
}
};
// Main function
int main()
{
int SIZE;
cout << "Please enter the size of your queue\n";
cin >> SIZE;
// Create a queue object with the specified size
Queue queue(SIZE);
while (true)
{
// User menu for queue operations
cout << "_________________Please enter what you need to do_________________ \n";
cout << " 1 >> InQueue element to my Queue\n";
cout << " 2 >> DeQueue element from my Queue\n";
cout << " 3 >> Print my Queue\n";
cout << " 0 >> Exit\n";
cout << "____________________________________________________________________\n";
// User input for the selected operation
int CHOICE;
cin >> CHOICE;
// user decied to add element
if (CHOICE == 1)
{
int element;
cout << "Please enter the element\n";
cin >> element;
queue.inQueue(element);
}
// user decied to delete element
else if (CHOICE == 2)
queue.deQueue();
// user decied to print the queue
else if (CHOICE == 3)
queue.Display();
// user decide to Exit the program
else if (CHOICE == 0)
break;
// user entered wrong choise
else
cout << "You have entered a wrong number, please try again\n";
}
// end of the program
return 0;
}