-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpila.c
88 lines (77 loc) · 1.67 KB
/
pila.c
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
#include "pila.h"
void inicpila(P_Pila p)
{
int *aux;
aux = (int *)malloc(50*sizeof(int));
p->valores = aux;
p->postope=0;
}
void apilar(P_Pila p, int dato)
{
int index = (*p).postope;
(*p).valores[index]=dato;
(*p).postope = (*p).postope + 1;
}
int desapilar(P_Pila p)
{
int z = p->valores[p->postope -1];
p->postope--;
return z;
}
int tope(P_Pila p)
{
return p->valores[p->postope - 1];
}
int pilavacia(P_Pila p)
{
return (p->postope == 0);
}
void leer (P_Pila p)
{
int aux = 0;
if (p->postope < 50)
{
printf("Ingrese un valor entero: ");
fflush(stdin);
scanf("%d", &aux);
apilar(p, aux);
}
else
printf("Error: la pila esta llena");
}
void mostrar(P_Pila p)
{
int i;
printf("\nBase .............................................. Tope\n\n");
for(i=0; i < p->postope; i++)
printf("| %d ", p->valores[i]);
printf("\n\nBase .............................................. Tope\n\n");
}
void intercalar(P_Pila p1,P_Pila p2,P_Pila p3)
{
while (!pilavacia(p1) && !pilavacia(p2))
{
if(tope(p1)<tope(p2))
{
apilar(p3, desapilar(p1));
}
else
{
apilar(p3, desapilar(p2));
}
}
if(!pilavacia(p1))
{
while(!pilavacia(p1))
{
apilar(p3, desapilar(p1));
}
}
else
{
while(!pilavacia(p2))
{
apilar(p3, desapilar(p2));
}
}
}