-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCola_VIP.cpp
More file actions
297 lines (228 loc) · 4.88 KB
/
Cola_VIP.cpp
File metadata and controls
297 lines (228 loc) · 4.88 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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
/*
* queue_eda2.h
*
* Implementación del TAD cola con nodos enlazados y nodo fantasma
*
* Estructuras de Datos y Algoritmos
* Facultad de Informática
* Universidad Complutense de Madrid
*
* Copyright (c) 2017 Enrique Martín Martín. All rights reserved.
*/
#ifndef QUEUE_EDA2_H_
#define QUEUE_EDA2_H_
#include <stdexcept>
#include <iostream>
template <typename T>
class ColaVIP {
private:
class Nodo {
public:
T elem;
T prioridad;
Nodo* sig;
Nodo(const T& e, Nodo* n, const T& p) : elem(e), sig(n), prioridad(p) {} // Constructor
Nodo() : sig(nullptr) {} // Constructor
};
// número de elementos en la cola
size_t nelems;
// número máximo de prioridad que puede haber en la cola
int maxPrioridades;
// punteros al primer y último elemento
Nodo* fantasma;
Nodo* ultimo;
// Libera la memoria dinámica
void libera();
// copia desde otra cola
void copia(const ColaVIP<T> &other);
// Copia una lista de nodos
void copia_nodos(const Nodo* n);
public:
//ColaVIP() : nelems(0), fantasma(new Nodo), ultimo(fantasma) {};
// constructor: cola vacía
ColaVIP(int p);
// destructor
~ColaVIP();
// constructor por copia
ColaVIP(const ColaVIP<T>& other);
// operador de asignación
ColaVIP<T> & operator=(const ColaVIP<T>& other);
// encolar un elemento
void push(T p, const T& elem);
// consultar primer elemento
T const& front() const;
// eliminar primer elemento
void pop();
// consultar si la cola está vacía
bool empty() const;
// consultar el tamaño de la cola
size_t size() const;
};
template<typename T>
void ColaVIP<T>::libera() {
Nodo* node = fantasma;
while (node != nullptr) {
Nodo* next = node->sig;
delete node;
node = next;
}
fantasma = nullptr;
ultimo = nullptr;
}
template<typename T>
void ColaVIP<T>::copia(const ColaVIP<T> &other) {
nelems = other.nelems;
copia_nodos(other.fantasma);
}
template<typename T>
void ColaVIP<T>::copia_nodos(const Nodo* head) {
fantasma = new Nodo();
ultimo = fantasma;
while (head->sig != nullptr) {
Nodo* aux = new Nodo(head->sig->elem, nullptr);
ultimo->sig = aux;
ultimo = aux;
head = head->sig;
}
}
template<typename T>
ColaVIP<T>::ColaVIP(int p) : nelems(0), fantasma(new Nodo), ultimo(fantasma), maxPrioridades(p) {}
template<typename T>
ColaVIP<T>::~ColaVIP() {
libera();
}
template<typename T>
ColaVIP<T>::ColaVIP(const ColaVIP<T>& other) : nelems(0), fantasma(nullptr), ultimo(nullptr) {
copia(other);
}
template<typename T>
ColaVIP<T> & ColaVIP<T>::operator=(const ColaVIP<T>& other) {
if (this != &other) { // evita auto-asignación
libera();
copia(other);
}
return *this;
}
template<typename T>
void ColaVIP<T>::push(T p, const T& elem) { // O(1)
Nodo* node = new Nodo(elem, ultimo->sig, p);
ultimo->sig = node;
ultimo = node;
nelems++;
}
template<typename T>
T const& ColaVIP<T>::front() const { // O(1)
if (empty()) {
throw std::domain_error("Cola vacía");
}
else {
int cont_p = maxPrioridades;
Nodo* nodo = fantasma->sig;
Nodo* VIPelem = nullptr;
int i = 0;
//return fantasma->sig->elem;
while (i < size())
{
if (nodo->prioridad < cont_p)
{
VIPelem = nodo;
cont_p = nodo->prioridad;
}
nodo = nodo->sig;
i++;
}
return VIPelem->elem;
}
}
template<typename T>
void ColaVIP<T>::pop() { // O(1)
if (empty()) {
throw std::domain_error("Eliminar en cola vacía");
}
else {
/*nelems--;
Nodo* head = fantasma->sig;
Nodo* head_next = head->sig;
delete head;
fantasma->sig = head_next;*/
int cont_p = maxPrioridades;
Nodo* nodo = fantasma->sig;
Nodo* ant = fantasma;
Nodo* VIPelem = nullptr;
Nodo* VIPelem_ant = nullptr;
int i = 0;
//return fantasma->sig->elem;
while (i < size())
{
if (nodo->prioridad < cont_p)
{
VIPelem = nodo;
VIPelem_ant = ant;
cont_p = nodo->prioridad;
}
ant = nodo;
nodo = nodo->sig;
i++;
}
VIPelem_ant->sig = VIPelem->sig;
nelems--;
}
}
template<typename T>
bool ColaVIP<T>::empty() const { // O(1)
return size() == 0;
}
template<typename T>
size_t ColaVIP<T>::size() const { // O(1)
return nelems;
}
#endif /* QUEUE_EDA2_H_ */
int main()
{
int numCasos;
std::cin >> numCasos;
for (int i = 0; i < numCasos; i++)
{
int numPrioridades;
int movimientos;
int aforoMax;
int aforo = 0;
std::cin >> numPrioridades;
std::cin >> movimientos;
std::cin >> aforoMax;
ColaVIP<int> cola = ColaVIP<int>(numPrioridades);
for (int j = 0; j < movimientos; j++)
{
char c;
std::cin >> c;
if (c == '+')
{
int prioridad;
std::cin >> prioridad;
int e;
std::cin >> e;
aforo++;
if (aforo > aforoMax)
cola.push(prioridad, e);
}
else
{
if (!cola.empty())
cola.pop();
}
}
if (cola.empty())
std::cout << "NADIE";
else
{
int size = cola.size();
for (int k = 0; k < size; k++)
{
std::cout << cola.front() << " ";
cola.pop();
}
}
std::cout << std::endl;
}
return 0;
}