-
Notifications
You must be signed in to change notification settings - Fork 185
/
Copy pathImplementing-Priority-Queue-Using2DArray.cpp
206 lines (206 loc) · 4.68 KB
/
Implementing-Priority-Queue-Using2DArray.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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
#include <bits/stdc++.h>
#include <cstdio>
using namespace std;
int** display_Queue(int n, int q[50][50], int rear[50], int front[50], int *p[52])
{
int check = -1;
for (int i = 0; i < n; i++)
{
rear [i] = *(p[0] + i);
}
for (int i = 0; i < n; i++)
{
front [i] = *(p[1] + i);
}
for (int i = 2; i < n; i++)
{
for (int j = 0; j < n; j ++)
{
q[i][j] = *(p[i] + j);
}
}
cout << "The priority queue is displaying :" << endl;
for (int i = 0; i < n; i++)
{
for (int j = front[i]; j != rear[i]; j = (j + 1) % n)
{
if (q[i][j])
{
cout << "\t " << q[i][j];
check = 1;
}
}
if (q[i][rear[i]])
{
cout << "\t" << q[i][rear[i]];
check = 1;
}
}
if (check == -1)
{
cout << "The PRIORITY QUEUE is empty!!" << endl;
}
cout << endl;
p[0] = rear;
p[1] = front;
for (int i = 2; i < n; i ++)
{
p[i] = &q[i][0];
}
return p;
}
int** dequeue (int n, int q[50][50], int rear[50], int front[50], int *p[52])
{
for (int i = 0; i < n; i++)
{
rear [i] = *(p[0] + i);
}
for (int i = 0; i < n; i++)
{
front [i] = *(p[1] + i);
}
for (int i = 2; i < n; i++)
{
for (int j = 0; j < n; j ++)
{
q[i][j] = *(p[i] + j);
}
}
int check = -1;
for (int i = 0; i < n; i ++)
{
check = 0;
for (int j = 0; j < n; j ++)
{
if (q[i][j] != 0 && j == n-1)
{
cout << q[i][j] << " " << "is being deleted" << endl;
q[i][j] = 0;
front[i] = -1;
check = 1;
break;
}
else if (q[i][j] != 0 && j != n-1)
{
cout << q[i][j] << " " << "is being deleted" << endl;
q[i][j] = 0;
front[i] = front[i] + 1;
check = 1;
break;
}
}
if (check == 1)
{
break;
}
}
if (check == 0)
{
cout << "The PRIORITY QUEUE is already empty!! UNDERFLOW!!" << endl;
}
p[0] = rear;
p[1] = front;
for (int i = 2; i < n; i ++)
{
p[i] = &q[i][0];
}
return p;
}
int **enqueue (int n, int q[50][50], int rear[50], int front[50], int *p[52])
{
int val, prio, choice = 1;
for (int i = 0; i < n; i++)
{
rear [i] = *(p[0] + i);
}
for (int i = 0; i < n; i++)
{
front [i] = *(p[1] + i);
}
for (int i = 2; i < n; i++)
{
for (int j = 0; j < n; j ++)
{
q[i][j] = *(p[i] + j);
}
}
cout << "Enter the value to insert except zero: " << endl;
cin >> val;
cout << "Enter the priority number : " << endl;
cin >> prio;
int index = prio - 1;
//cout << rear[index] << " " << front[index] << "\n";
if (rear[index] == -1 && front[index] == -1)
{
rear[index] = 0;
front[index] = 0;
q[index][0] = val;
}
else if ((rear[index] == n-1 && front[index] == 0) || (front[index] == rear[index] + 1))
{
cout << "Overflow" << endl;
}
else if (rear[index] == n-1)
{
rear[index] = 0;
q[index][0] = val;
}
else
{
rear[index] = rear[index] + 1;
q[index][rear[index]] = val;
}
p[0] = rear;
p[1] = front;
for (int i = 2; i < n; i ++)
{
p[i] = &q[i][0];
}
return p;
}
int main()
{
int n, choice = 1;
int **p1;
cout << "Enter the highest priority number :" << endl;
cin >> n;
int q[50][50], rear[50], front[50], *p[52];
fill(rear, rear + n, -1);
fill(front, front + n, -1);
p[0] = rear;
p[1] = front;
for (int i = 2; i < n; i ++)
{
p[i] = &q[i][0];
}
while (choice)
{
cout << "Press 1 for Insertion : " << endl;
cout << "Press 2 for deletion : " << endl;
cout << "Press 3 for display : " << endl;
cout << "Press 0 to end the program : " << endl;
cout << "Enter your choice : " << endl;
cin >> choice;
if (choice == 1)
{
p1 = enqueue(n, q, rear, front, p);
}
else if (choice == 2)
{
p1 = dequeue(n, q, rear, front, p);
}
else if (choice == 3)
{
p1 = display_Queue(n, q, rear, front, p);
}
else if (choice == 0)
{
cout << "The program is ended" << endl;
}
else
{
cout << "Wrong Choice" << endl;
}
}
return 0;
}