-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPilhaEstatica.c
70 lines (60 loc) · 1.18 KB
/
PilhaEstatica.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
#include <stdio.h>
#define TAM 5
typedef struct PILHA {
int elem[TAM];
int topo;
} PILHA;
void inicializar(PILHA *pilha) {
pilha->topo = -1;
}
int pilhaVazia(PILHA *pilha) {
if (pilha->topo == -1)
return 1;
return 0;
}
int pilhaCheia(PILHA *pilha) {
if (pilha->topo == TAM - 1)
return 1;
return 0;
}
int push(PILHA *pilha, int elemento) {
if (pilhaCheia(pilha)) {
printf("\nERRO! Pilha Cheia.");
return 0;
}
pilha->elem[pilha->topo+1] = elemento;
pilha->topo++;
return 1;
}
int pop(PILHA *pilha) {
int removido = -1;
if (pilhaVazia (pilha)) {
printf("Nao ha elemento para remover.");
return removido;
}
removido = pilha->elem[pilha->topo];
pilha->topo--;
return removido;
}
int topoEl(PILHA *pilha) {
int topo = -1;
if (pilhaVazia (pilha)) {
printf ("Nao ha elemento.");
return topo;
}
topo = pilha->elem[pilha->topo];
return topo;
}
int main() {
PILHA p;
inicializar (&p);
push(&p, 5);
printf("\n%d", topoEl(&p));
push(&p, 15);
printf("\n%d", topoEl(&p));
push(&p, 2);
printf("\n%d", topoEl(&p));
pop (&p);
printf("\n%d", topoEl(&p));
return 0;
}