-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPilhaDin.c
101 lines (91 loc) · 2 KB
/
PilhaDin.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
#include <stdio.h>
#include <stdlib.h>
#include "PilhaDin.h" //inclui os Protótipos
//Definição do tipo Pilha
struct elemento{
struct aluno dados;
struct elemento *prox;
};
typedef struct elemento Elem;
Pilha* cria_Pilha(){
Pilha* pi = (Pilha*) malloc(sizeof(Pilha));
if(pi != NULL)
*pi = NULL;
return pi;
}
void libera_Pilha(Pilha* pi){
if(pi != NULL){
Elem* no;
while((*pi) != NULL){
no = *pi;
*pi = (*pi)->prox;
free(no);
}
free(pi);
}
}
int consulta_topo_Pilha(Pilha* pi, struct aluno *al){
if(pi == NULL)
return 0;
if((*pi) == NULL)
return 0;
*al = (*pi)->dados;
return 1;
}
int insere_Pilha(Pilha* pi, struct aluno al){
if(pi == NULL)
return 0;
Elem* no;
no = (Elem*) malloc(sizeof(Elem));
if(no == NULL)
return 0;
no->dados = al;
no->prox = (*pi);
*pi = no;
return 1;
}
int remove_Pilha(Pilha* pi){
if(pi == NULL)
return 0;
if((*pi) == NULL)
return 0;
Elem *no = *pi;
*pi = no->prox;
free(no);
return 1;
}
int tamanho_Pilha(Pilha* pi){
if(pi == NULL)
return 0;
int cont = 0;
Elem* no = *pi;
while(no != NULL){
cont++;
no = no->prox;
}
return cont;
}
int Pilha_cheia(Pilha* pi){
return 0;
}
int Pilha_vazia(Pilha* pi){
if(pi == NULL)
return 1;
if(*pi == NULL)
return 1;
return 0;
}
void imprime_Pilha(Pilha* pi){
if(pi == NULL)
return;
Elem* no = *pi;
while(no != NULL){
printf("Matricula: %d\n",no->dados.matricula);
printf("Nome: %s\n",no->dados.nome);
printf("Notas: %f %f %f\n",no->dados.n1,
no->dados.n2,
no->dados.n3);
printf("-------------------------------\n");
no = no->prox;
}
}