-
Notifications
You must be signed in to change notification settings - Fork 0
/
Stack.h
392 lines (260 loc) · 5.1 KB
/
Stack.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
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
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
#pragma region STRUCTURE
struct pila
{
int valor;
pila *prox;
}Lista, Cola;
#pragma endregion
#pragma region ADT
//DEVUELVE VERDADERO O FALSO SI LA PILA ESTA VACIA
bool vacio(pila *p)
{
return (p == NULL);
}
//DEVUELVE EL VALOR DEL TOPE DE LA PILA
int tope(pila *p)
{
if (!vacio(p))
return p->valor;
}
//APILAR UN ELEMENTO EN PILA
void apilar(pila **p, int x)
{
pila *aux = new pila;
aux->valor = x;
aux->prox = *p;
*p = aux;
}
//DESAPILAR TOPE DE PILA
void desapilar(pila **p)
{
pila *aux = *p;
*p = (*p)->prox;
delete aux;
}
#pragma endregion
#pragma region FUNCIONES BASICAS
//MUESTRA LA PILA USANDO RECURSIVIDAD
void mostrarPila(pila **p)
{
if (!vacio(*p))
{
int x = tope(*p);
printf("\t [%i]\n", x);
desapilar(p);
mostrarPila(p);
apilar(p, x);
}
}
#pragma endregion
//TODOS LOS EJERCICIOS UTILIZAN SOLO LAS ADT Y RECURSIVIDAD
#pragma region EJERCICIOS DE UNA PILA
#pragma region ELIMINACIONES
#pragma region FUNCIONES SECUNDARIAS PARA ELIMINACIONES
//NUMERO DE OCURRENCIAS DE UN NUMERO EN LA PILA
int ocurrenciasDeN(pila **p, int n)
{
int cont = 0;
if (!vacio(*p))
{
int x = tope(*p);
desapilar(p);
cont = ocurrenciasDeN(p, n);
apilar(p, x);
if (x == n) return cont++;
else return cont;
}
return 0;
}
#pragma endregion
//ELIMINAR UN ELEMENTO LA PRIMERA VEZ QUE APARECE
void eliminarPrimeraVez(pila **p, int x)
{
if (!vacio(*p))
{
int y = tope(*p);
if (y == x) desapilar(p);
else
{
desapilar(p);
eliminarPrimeraVez(p, x);
apilar(p, y);
}
}
}
//ELIMINAR LA ULTIMA VEZ QUE APARECE
void eliminarUltimaVez(pila **p, int z,int ocurrenciasdez,int cont)
{
int counter = 0;
if(!vacio(*p))
{
int x = tope(*p);
desapilar(p);
if (x == z) counter++;
eliminarUltimaVez(p, z, ocurrenciasdez,counter);
if (x == z && counter == ocurrenciasdez) return;
else
apilar(p, x);
}
}
//ELIMINAR UN ELEMENTO TODAS LAS VECES QUE APARECE
void eliminarTodasLasVeces(pila **p, int x)
{
if (!vacio(*p))
{
int y = tope(*p);
desapilar(p);
eliminarTodasLasVeces(p, x);
if (y != x) apilar(p, y);
}
}
//ELIMINA REPETIDOS MENOS UNA INSTANCIA
void elliminarRep(pila **p)
{
if (!vacio(*p))
{
int x = tope(*p);
desapilar(p);
eliminarTodasLasVeces(p, x);
elliminarRep(p);
apilar(p, x);
}
}
#pragma endregion
#pragma region VOLTEAR PILA
#pragma region FUNCION SECUNDARIA
//DEJA UN ELEMENTO AL FINAL DE LA PILA
void dejarElementoAlFinal(pila **p, int x)
{
if (vacio(*p))
apilar(p, x);
else
{
int y = tope(*p);
desapilar(p);
dejarElementoAlFinal(p, x);
apilar(p, y);
}
}
#pragma endregion
//VOLTEA LA PILA
void voltearPila(pila **p)
{
if(!vacio(*p))
{
int x = tope(*p);
desapilar(p);
voltearPila(p);
dejarElementoAlFinal(p, x);
}
}
#pragma endregion
#pragma region DEJAR PARES EN EL TOPE
#pragma region FUNCIONES SECUNDARIAS
//NUMERO IMPAR
bool impar(int n)
{
if ((n % 2) == 0) return false;
else return true;
}
//DEJAR IMPARES AL FONDO
void imparesAlFondo(pila **p, int n)
{
if (vacio(*p))
apilar(p, n);
else
{
if (!impar(n))
apilar(p, n);
else
{
int x = tope(*p);
desapilar(p);
imparesAlFondo(p, n);
apilar(p, x);
}
}
}
#pragma endregion
//DEJAR PARES EN EL TOPE
void paresAlTope(pila **p)
{
if(!vacio(*p))
{
int x = tope(*p);
desapilar(p);
paresAlTope(p);
imparesAlFondo(p, x);
}
}
#pragma endregion
#pragma endregion
#pragma region EJERCICIOS DE DOS PILAS
#pragma region SUMAR PILAS DESDE EL FONDO
#pragma region FUNCIONES SECUNDARIAS
//CONTAR CANTIDAD DE ELEMENTOS
int cantidadDeElementos(pila *p,int res)
{
if(!vacio(p))
{
int x = tope(p);
desapilar(&p);
res = cantidadDeElementos(p,res);
apilar(&p, x);
return res++;
}
return 0;
}
//IGUALAR CANTIDAD DE ELEMENTOS DE DOS PILAS A Y B APILANDO ZEROS DESDE EL TOPE
void igualaCDE(pila **a, pila**b)
{
if(!vacio(*a) && !vacio(*b))
{
int cantA = cantidadDeElementos(*a,0), cantB = cantidadDeElementos(*b,0);
if(cantA < cantB)
{
while (cantA<cantB)
{
apilar(a, 0);
cantA = cantidadDeElementos(*a,0);
}
}else if(cantB<cantA)
{
while (cantB<cantA)
{
apilar(b, 0);
cantB = cantidadDeElementos(*b,0);
}
}
}
}
#pragma endregion
//SUMAR DOS PILAS EN UNA PILA C DESDE EL FONDO
int sumarDesdeElFondo(pila **a, pila**b, pila**c,int res)
{
int x,y,num;
if(!vacio(*a) && !vacio(*b))
{
x = tope(*a);
y = tope(*b);
desapilar(a);
desapilar(b);
res = sumarDesdeElFondo(a, b, c,res);
apilar(a, x);
apilar(b, y);
num = (x + y) + res;
if(num > 9)
{
res = num / 10;
apilar(c, num % 10);
return res;
}else
{
apilar(c, num);
return 0;
}
}
return 0;
}
#pragma endregion
#pragma endregion