-
Notifications
You must be signed in to change notification settings - Fork 0
/
ColaPrioridad.h
179 lines (147 loc) · 2.8 KB
/
ColaPrioridad.h
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
#ifndef U04_COLAS_COLA_COLA_PRIORIDAD_H_
#define U04_COLAS_COLA_COLA_PRIORIDAD_H_
#include "nodoPrioridad.h"
#define SIN_PRIORIDAD 1000000
/**
* Clase que implementa una Cola generica, ya que puede
* almacenar cualquier tipo de dato T
* @tparam T cualquier tipo de dato
*/
template <class T>
class ColaPrioridad
{
private:
NodoPrioridad<T> *tope, *fondo;
public:
ColaPrioridad();
~ColaPrioridad();
void encolar(T dato);
void encolarPrioridad(T dato, int prioridad);
T desencolar();
bool esVacia();
T peek();
};
/**
* Constructor de la clase Cola
* @tparam T
*/
template <class T>
ColaPrioridad<T>::ColaPrioridad()
{
tope = nullptr;
fondo = nullptr;
}
/**
* Destructor de la clase Cola, se encarga de liberar la memoria de todos los
* nodos utilizados en la Cola
* @tparam T
*/
template <class T>
ColaPrioridad<T>::~ColaPrioridad()
{
while (!esVacia())
{
desencolar();
}
delete tope;
delete fondo;
}
/**
* Inserta un dato en la Cola
* @tparam T
* @param dato dato a insertar
*/
template <class T>
void ColaPrioridad<T>::encolar(T dato)
{
NodoPrioridad<T> *nuevo = new NodoPrioridad<T>();
nuevo->setDato(dato);
nuevo->setSiguiente(nullptr);
nuevo->setPrioridad(SIN_PRIORIDAD);
if (esVacia())
{
tope = nuevo;
}
else
{
fondo->setSiguiente(nuevo);
}
fondo = nuevo;
}
/**
* Obtener el dato de la Cola
* @tparam T
* @return dato almacenado en el nodo
*/
template <class T>
T ColaPrioridad<T>::desencolar()
{
if (esVacia())
{
throw 400;
}
T dato = tope->getDato();
NodoPrioridad<T> *aBorrar = tope;
tope = tope->getSiguiente();
if (tope == nullptr)
{
fondo = nullptr;
}
delete aBorrar;
return dato;
}
/**
* Responde si la Cola se encuentra Vacía
* @tparam T
* @return
*/
template <class T>
bool ColaPrioridad<T>::esVacia()
{
return fondo == nullptr;
}
/**
* Obtener el dato de la Cola sin eliminar el nodo
* @tparam T
* @return dato almacenado en el nodo
*/
template <class T>
T ColaPrioridad<T>::peek()
{
if (esVacia())
{
throw 400;
}
return tope->getDato();
}
template <class T>
void ColaPrioridad<T>::encolarPrioridad(T dato, int prioridad)
{
if (prioridad >= SIN_PRIORIDAD)
{
encolar(dato);
return;
}
NodoPrioridad<T> *nuevo = new NodoPrioridad<T>();
nuevo->setDato(dato);
nuevo->setPrioridad(prioridad);
NodoPrioridad<T> *aux = tope;
if(esVacia()){
tope = nuevo;
fondo = tope;
return;
}
if (tope->getPrioridad() > prioridad)
{
nuevo->setSiguiente(tope);
tope = nuevo;
return;
}
while (aux->getSiguiente() != nullptr && aux->getSiguiente()->getPrioridad() <= prioridad)
{
aux = aux->getSiguiente();
}
nuevo->setSiguiente(aux->getSiguiente());
aux->setSiguiente(nuevo);
}
#endif // U04_COLAS_COLA_COLA_PRIORIDAD_H_