-
Notifications
You must be signed in to change notification settings - Fork 0
/
APila.cpp
360 lines (312 loc) · 11.6 KB
/
APila.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
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
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
//
// Created by nelon on 28/4/2018.
//
#include "APila.h"
APila::APila(unsigned int nroEst, unsigned int nroAlfEnt, unsigned int nroAlfPila, char finDePila) : Automata(
nroEst, nroAlfEnt) {
if (0 >= nroAlfPila)
throw 0;
/*
* Se asume que el automata de pila es indeterminado solo por no definir todas las posibles transiciones
*
* Dicho esto
* la pila comienza con el simbolo de fin de pila cargado
* el usuario no puede ingresar una entrada lambda
*/
this->nroElementosAlfabetoPila = nroAlfPila + 1;
this->cantActualElementosAlfabetoPila = 0;
this->alfabetoPila = new char[this->nroElementosAlfabetoPila];
this->tieneSimbolosPilaDefinidos = false;
this->finDePila = finDePila;
this->setAlfabetoPila(this->finDePila);
this->pila = new Stack<char>;
this->pila->push(this->finDePila);
//f [ESTADO ACTUAL] [ENTRADA] [TOPE DE PILA] = EstadoYPila*
f = new ElementosTransicionPila ***[this->nroEstados];
for (int i = 0; i < this->nroEstados; ++i) {
f[i] = new ElementosTransicionPila **[this->nroElementosAlfabeto];
for (int j = 0; j < this->nroElementosAlfabeto; ++j) {
f[i][j] = new ElementosTransicionPila *[this->nroElementosAlfabetoPila];
for (int k = 0; k < nroElementosAlfabetoPila; ++k)
f[i][j][k] = nullptr;
}
}
}
void APila::setF(std::string nombreEstadoSalida, char entrada, char valorPila, std::string nombreEstadoDestino,
bool conservarTope, char apilamiento) {
unsigned int ESalidaIndex, entradaIndex, valorPilaIndex, EDestinoIndex, apilamientoIndex;
char apilamientoTMP;
if (tieneFDeterminada)
throw -23; // la funcion de transicion ya fue usada una vez
try {
ESalidaIndex = this->getEstadoIndex(nombreEstadoSalida);
} catch (int exc) {
if (-1 == exc)
throw -11;
}
try {
EDestinoIndex = this->getEstadoIndex(nombreEstadoDestino);
} catch (int exc) {
if (-1 == exc)
throw -12;
}
try {
entradaIndex = this->getAlfabetoIndex(entrada);
} catch (int exc) {
if (-1 == exc)
throw -13;
}
try {
valorPilaIndex = this->getAlfabetoPilaIndex(valorPila);
} catch (int exc) {
if (-1 == exc)
throw -14;
}
if ((char) 0 != apilamiento) {
try {
apilamientoIndex = this->getAlfabetoPilaIndex(apilamiento);
} catch (int exc) {
if (-1 == exc)
throw -15;
}
apilamientoTMP = this->alfabetoPila[apilamientoIndex];
} else { // si el usuario no quiene ingresar un nuevo simbolo a la pila
apilamientoTMP = apilamiento;
}
/*
* Este bloque verifica que no haya dos fines de pila al mismo tiempo
* */
if (apilamiento == this->finDePila) {
if (conservarTope)
throw -53;
else {
if (valorPila != this->finDePila)
throw -53;
}
}
/*
* El siguiente bloque de instrucciones verifica
* Que siempre que se quite el fin de pila se alcance un estado de salida
* Que siempre que esté al menos el simbolo de pila se alcance un estado que no sea de salida
* Que no se reemplace el fin de pila por cualquier otro simbolo
*
* */
if (conservarTope) {
// si se conserva el tope, hay al menos un elemento en la pila
// por ende sólo se puede alcanzar estados que no sean de salida
if (this->estados[EDestinoIndex].situacion)
throw -50;
} else {
// si se desapila
if ((char) 0 == apilamiento) {
// si se desapila el fin de pila
if (valorPila == this->finDePila) {
// solo se puede alcanzar salida
if (!this->estados[EDestinoIndex].situacion)
throw -51;
} else {
// no se puede alcanzar salida
if (this->estados[EDestinoIndex].situacion)
throw -50;
}
} else {
// en este caso algo se apila
// no se puede reemplazar el tope de pila por otro simbolo
if (valorPila == this->finDePila && apilamiento != this->finDePila) {
throw -52;
}
if (this->estados[EDestinoIndex].situacion)
throw -50;
}
}
//fin bloque
if (nullptr != this->f[ESalidaIndex][entradaIndex][valorPilaIndex])
throw -16; // sólo se puede definir una
this->f[ESalidaIndex][entradaIndex][valorPilaIndex] = new ElementosTransicionPila;
this->f[ESalidaIndex][entradaIndex][valorPilaIndex]->estado.nombre = this->estados[EDestinoIndex].nombre;
this->f[ESalidaIndex][entradaIndex][valorPilaIndex]->estado.situacion = this->estados[EDestinoIndex].situacion;
this->f[ESalidaIndex][entradaIndex][valorPilaIndex]->conservarTope = conservarTope;
this->f[ESalidaIndex][entradaIndex][valorPilaIndex]->apilamiento = apilamientoTMP;
}
/*
* El siguiente bloque es para cargar el alfabeto de la pila
* de tamaño nEAlfPila en alfPila[],
* donde no se admiten entradas repetidas (LAMBDA y '#' cuentan)
*/
void APila::setAlfabetoPila(char c) {
if (this->tieneSimbolosPilaDefinidos)
throw -1; // ya está lleno
if (this->existsIn(c, this->alfabetoPila, this->cantActualElementosAlfabetoPila))
throw -2;
this->alfabetoPila[this->cantActualElementosAlfabetoPila] = c;
this->cantActualElementosAlfabetoPila++;
if (this->cantActualElementosAlfabetoPila == this->nroElementosAlfabetoPila) {
this->tieneSimbolosPilaDefinidos = true;
this->setAutomataListo();
}
}
void APila::transicion() {
if (this->automataApagado)
throw -10;
if (!this->automataListo) {
if (!this->tieneEstadoInicial ||
!this->tieneEstadoSalida ||
!this->tieneEstadosDefinidos ||
!this->tieneEntradasDefinidas ||
!this->tieneSimbolosPilaDefinidos ||
!this->tieneCadenaAnalizar)
throw -30;
}
if ('\0' == this->cadenaAnalizar[0]) {
this->apagarAutomata();
return;
}
// no es una excepcion porque coresponde a la transicion lambda
char entrada = this->cadenaAnalizar[0];
this->cadenaAnalizar = &this->cadenaAnalizar[1];
ElementosTransicionPila *salidaF;
try {
salidaF = this->f[this->getEstadoIndex(this->estadoActual->nombre)][this->getAlfabetoIndex(
entrada)][this->getAlfabetoPilaIndex(this->pila->peek())];
} catch (int exc) {
if (-1 == exc)
throw -20;
}
// En caso de efectuarse una transicion quita simbolo de la pila. Porque si no se hace la
// transicion se perdería el tope de pila
if (nullptr == salidaF) {
Estado *tmpEstado = new Estado();
tmpEstado->nombre = "ESTADO DE ERROR";
tmpEstado->situacion = false;
this->estadoActual = tmpEstado;
this->automataApagado = true;
//define automata como no usable
} else {
if (!salidaF->conservarTope)
pila->pop();
if ((char) 0 != salidaF->apilamiento)
pila->push(salidaF->apilamiento);
estadoActual = &salidaF->estado;
if (!this->tieneFDeterminada) {
this->tieneFDeterminada = true;
this->setAutomataListo();
}
}
}
void APila::reiniciarAutomata() {
this->automataListo = false;
this->automataApagado = false;
this->cadenaAnalizar = "";
this->tieneCadenaAnalizar = false;
this->estadoActual = this->estadoInicial;
while (this->pila->peek() != this->finDePila)
this->pila->pop();
}
unsigned int APila::getAlfabetoPilaIndex(const char &s) {
for (unsigned int i = 0; i < this->cantActualElementosAlfabetoPila; ++i) {
if (s == this->alfabetoPila[i])
return i;
}
throw -1;
}
// método para reemplazar la transición lambda entre útlimo estado alcanzado
// por el usuario y el estado de salida
void APila::apagarAutomata() {
this->automataApagado = true;
try {
if (this->finDePila == this->pila->peek()) {
this->estadoActual = this->buscarEstadoFinal();
} else {
Estado *tmpEstado = new Estado();
tmpEstado->nombre = "ESTADO DE ERROR";
tmpEstado->situacion = false;
this->estadoActual = tmpEstado;
}
} catch (int exc) {
throw exc;
}
}
Estado *APila::buscarEstadoFinal() {
for (int i = 0; i < this->cantActualEstados; ++i) {
if (this->estados[i].situacion)
return &this->estados[i];
}
throw -5;
}
unsigned int APila::getNroElementosAlfabetoPila() {
return this->nroElementosAlfabetoPila;
}
char APila::getTopeDePila() {
char tmp = this->pila->pop();
this->pila->push(tmp);
return tmp;
}
void APila::setAutomataListo() {
this->automataListo = this->tieneEstadoInicial &&
this->tieneEstadoSalida &&
this->tieneEstadosDefinidos &&
this->tieneEntradasDefinidas &&
this->tieneFDeterminada &&
this->tieneSimbolosPilaDefinidos &&
this->tieneCadenaAnalizar;
}
std::string APila::tipoAutomata() {
return "AP";
}
std::string APila::expresionEspecifica() {
std::string r = "{ ";
char i;
if (0 < this->cantActualElementosAlfabetoPila) {
for (i = 0; i < this->cantActualElementosAlfabetoPila - 1; i++) {
r += this->alfabetoPila[i];
r += ", ";
}
r += this->alfabetoPila[i];
}
r += " }, ";
r += this->finDePila;
r += ", ";
return r;
}
APila::APila(const APila &x) : Automata(x) {
this->nroElementosAlfabetoPila = x.nroElementosAlfabetoPila;
this->cantActualElementosAlfabetoPila = x.cantActualElementosAlfabetoPila;
this->alfabetoPila = new char[this->nroElementosAlfabetoPila];
for (int l = 0; l < this->cantActualElementosAlfabetoPila; ++l)
this->alfabetoPila[l] = x.alfabetoPila[l];
this->tieneSimbolosPilaDefinidos = x.tieneSimbolosPilaDefinidos;
this->finDePila = x.finDePila;
this->pila = new Stack<char>(*x.pila);
this->f = new ElementosTransicionPila ***[this->nroEstados];
for (int i = 0; i < this->nroEstados; ++i) {
this->f[i] = new ElementosTransicionPila **[this->nroElementosAlfabeto];
for (int j = 0; j < this->nroElementosAlfabeto; ++j) {
this->f[i][j] = new ElementosTransicionPila *[this->nroElementosAlfabeto];
for (int k = 0; k < this->nroElementosAlfabetoPila; ++k) {
if (nullptr == x.f[i][j][k])
this->f[i][j][k] = nullptr;
else {
this->f[i][j][k] = new ElementosTransicionPila;
this->f[i][j][k]->estado.nombre = x.f[i][j][k]->estado.nombre;
this->f[i][j][k]->estado.situacion = x.f[i][j][k]->estado.situacion;
this->f[i][j][k]->apilamiento = x.f[i][j][k]->apilamiento;
this->f[i][j][k]->conservarTope = x.f[i][j][k]->conservarTope;
}
}
}
}
}
APila::~APila() {
delete this->alfabetoPila;
delete this->pila;
for (int i = 0; i < this->nroEstados; ++i) {
for (int j = 0; j < this->nroElementosAlfabeto; ++j) {
for (int k = 0; k < this->nroElementosAlfabetoPila; ++k) {
delete this->f[i][j][k];
}
delete this->f[i][j];
}
delete this->f[i];
}
delete this->f;
}