-
Notifications
You must be signed in to change notification settings - Fork 0
/
PilhaInt.c
85 lines (85 loc) · 1.57 KB
/
PilhaInt.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
#include <stdio.h>
#include <stdlib.h>
typedef struct tPilha
{
int *itens;
int topo, tamanho;
}Pilha;
void iniciaPilha(Pilha *pilha, int n)
{
pilha->itens = (int*)malloc(n*sizeof(int));
pilha->topo = -1;
pilha->tamanho = n;
}
void empilha(Pilha *pilha, int n)
{
if( pilha->topo < pilha->tamanho)
{
pilha->topo++;
pilha->itens[pilha->topo] = n;
}
}
void desempilha(Pilha *pilha)
{
if(pilha->topo != -1)
{
pilha->topo--;
}
}
void printaTopo(Pilha *p)
{
if(p->topo != -1)
{
printf("%d\n", p->itens[p->topo]);//printa topo
}
}
void topo(Pilha *pilha)
{
int i;
for(i = pilha->topo; i >= 0; i--)
{
if(i == 0) printf("%d\n", pilha->itens[i]);
else printf("%d ", pilha->itens[i]);
}
}
void base(Pilha *pilha)
{
int i;
for(i = 0; i <= pilha->topo; i++)
{
if(i == pilha->topo) printf("%d\n", pilha->itens[i]);
else printf("%d ", pilha->itens[i]);
}
}
int main()
{
int n, num, i;
char op;
Pilha p;
scanf("%d", &n);
iniciaPilha(&p, n-1);
while(scanf(" %c", &op) != EOF)
{
switch (op)
{
case 'E':
scanf(" %d", &num);
empilha(&p, num);
break;
case 'D':
desempilha(&p);
break;
case 'T':
printaTopo(&p);
break;
case 'B':
base(&p);
break;
case 'X':
topo(&p);
break;
}
}
free(p.itens);
return 0;
}