-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExercicio_3_Dinamic_Queue.cpp
More file actions
225 lines (158 loc) · 5.02 KB
/
Exercicio_3_Dinamic_Queue.cpp
File metadata and controls
225 lines (158 loc) · 5.02 KB
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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
#include <iostream>
#include <iomanip>
#include <stdlib.h>
using namespace std;
struct Queue{
int password;
bool priority;
bool(*setPriority)(void);
struct Queue *next;
};
bool setPriority(void){
int priority = 0;
while(1){
cout << "Esta senha tem prioridade?\n1.\tSim\n0.\tNao\n";
cin >> priority;
if(priority != 0 && priority != 1){
cout << "Opcao invalida... Digite novamente." << endl;
}else break;
}
return priority == 1;
}
void getNewPassword(struct Queue*& head, int& password) {
system("cls");
struct Queue* newPassword = (struct Queue*)malloc(sizeof(struct Queue));
newPassword->password = password++;
newPassword->setPriority = &setPriority;
newPassword->priority = newPassword->setPriority();
newPassword->next = nullptr;
if (head == nullptr) {
head = newPassword;
} else {
struct Queue* current = head;
while (current->next != nullptr) {
current = current->next;
}
current->next = newPassword;
}
cout << setw(4) << setfill('0') << password - 1 << " adicionado a fila de senhas!\n" << endl;
}
void callPassword(struct Queue*& head){
system("cls");
if(head == nullptr){
cout << "Nao existe nenhuma senha na fila...\n" << endl;
return;
}
if(head->priority){
cout << "Encontrado senha com prioridade...\n"
<< "A senha: " << setw(4) << setfill('0') << head->password << " foi chamada\n" << endl;
struct Queue* temp = head;
head = head->next;
free(temp);
return;
}else{
struct Queue* current = head;
struct Queue* previous = nullptr;
while(current != nullptr && !current->priority){
previous = current;
current = current->next;
}
if (current != nullptr) {
if (previous != nullptr) {
previous->next = current->next;
}else{
head = current->next;
}
cout << "Encontrado senha com prioridade...\n"
<< "A senha: " << setw(4) << setfill('0') << current->password << " foi chamada\n" << endl;
free(current);
}else {
cout << "Nao foi encontrado senha com prioridade...\n"
<< "A senha: " << setw(4) << setfill('0') << head->password << " foi chamada\n" << endl;
struct Queue* temp = head;
head = head->next;
free (temp);
}
}
}
void printDetails(struct Queue *head){
system("cls");
if(head != nullptr){
struct Queue *current = head;
while(current != nullptr){
cout << "Senha: " << setw(4) << setfill('0') << current->password
<< " Prioridade: " << (current->priority ? "Sim" : "Nao") << endl;
current = current->next;
}
}else{
cout << "Nao existe fila para imprimir...\n" << endl;
}
}
void printQueue(struct Queue *head){
system("cls");
if(head != nullptr){
struct Queue *current = head;
while(current != nullptr){
cout << setw(4) << setfill('0') << current->password << " ";
current = current->next;
}
cout << "\n" << endl;
}else{
cout << "Nao existe fila para imprimir...\n" << endl;
}
}
void deleteQueue(struct Queue*& head, int& password){
system("cls");
if(head != nullptr){
while (head != nullptr) {
struct Queue* temp = head;
head = head->next;
free(temp);
}
password = 1;
cout << "As senhas foram excluidas da fila!\n" << endl;
}else{
cout << "Nao foi encontrado nenhuma senha na fila...\n" << endl;
}
}
void displayMainOptions(void){
cout << "1. Solicitar Senha\n"
<< "2. Chamar Senha\n"
<< "3. Imprimir Fila\n"
<< "4. Imprimir Detalhes\n"
<< "5. Apagar Fila\n"
<< "0. Sair" << endl;
}
int main(void){
int passwordCount = 1;
struct Queue* queue = nullptr;
int option = -1;
do{
displayMainOptions();
cin >> option;
switch(option){
case 0:
deleteQueue(queue, passwordCount);
break;
case 1:
getNewPassword(queue, passwordCount);
break;
case 2:
callPassword(queue);
break;
case 3:
printQueue(queue);
break;
case 4:
printDetails(queue);
break;
case 5:
deleteQueue(queue, passwordCount);
break;
default:
cout << "Opcao invalida...\n";
break;
}
}while(option != 0);
return 0;
}