This repository has been archived by the owner on Mar 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPilha_estatica_aula.c
176 lines (156 loc) · 3.3 KB
/
Pilha_estatica_aula.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
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
#include <stdio.h>
#include <string.h>
#include<stdlib.h>
#define MAX 50
#define bool int
#define true 1
#define false 0
//PILHA ESTÁTICA
typedef struct Pessoa{
char nome[20];
int idade;
}Pessoa;
typedef struct stack{
Pessoa pessoas[MAX];
int top;
int bottom;
}stack;
int menu(void);
void pop(stack *s,Pessoa *p);
void pop_name(stack *s, char* str);
bool push(stack *s, Pessoa *p);
bool full(stack *s);
bool empty(stack *s);
void reset(stack *s);
void listar(stack *s);
int main(){
int choice;
char nome[20];
stack *S;
Pessoa aux;
S = (stack *) malloc (sizeof(stack));
while(1){
choice = menu();
switch (choice){
case 0:
if(full(S)){
printf("**STACK FULL. CANNOT ADD.**\n");
break;
}
printf("--ADDING PERSON--\n");
printf("Name: ");
scanf("%s",aux.nome);
printf("Age: ");
scanf("%d",&aux.idade);
push(S,&aux);
break;
case 1:
pop(S,&aux);
break;
case 2:
printf("Qual nome deseja remover? \n");
scanf("%s", nome);
pop_name(S,nome);
break;
case 3:
while(!empty(S)){
pop(S,&aux);
}
reset(S);
printf("**STACK CLEAN**\n");
break;
case 4:
if(empty(S)){
printf("**EMPTY STACK. CANNOT LIST.**\n");
break;
}
listar(S);
break;
case 5:
free(S);
exit(1);
default:
printf("Opção inválida\n");
}
}
}
int menu(void){
int e;
printf("------AGENDA PILHA-------\n");
printf("0 - INSERE PESSOA\n");
printf("1 - DELETA A PESSOA DO TOPO DA PILHA\n");
printf("2 - DELETA A PESSOA POR NOME\n");
printf("3 - LIMPA A PILHA\n");
printf("4 - LISTA NA TELA TODAS AS PESSOAS\n");
printf("5 - SAIR DO PROGRAMA\n");
scanf("%d",&e);
return e;
}
void reset(stack *s){
s->top = 0;
s->bottom = 0;
}
bool empty(stack *s){
return s->top==0;
}
bool full(stack *s){
return s->top==MAX;
}
bool push(stack *s, Pessoa *p){
if(!full(s)){
s->pessoas[s->top] = *p;
s->top++;
return true;
}
else{
return false;
}
}
void pop(stack *s,Pessoa *p){
if(empty(s)){
printf("**EMPTY STACK**\n");
return;
}
s->top--;
*p = s->pessoas[s->top];
}
void listar(stack *s){
stack *s_aux;
s_aux = (stack*) malloc(sizeof(stack));
Pessoa aux;
while(!empty(s)){
pop(s,&aux);
push(s_aux,&aux);//copia os elementos pra stack auxiliar assim eu não perco eles
printf("------------\n");
printf("Name: %s\nAge: %d\n",aux.nome,aux.idade);
printf("------------\n");
}
while(!empty(s_aux)){//copia as coisas de volta pra stack original
pop(s_aux,&aux);
push(s,&aux);
}
}
void pop_name(stack *s, char* str){
if(!empty(s)){
stack *aux;
Pessoa p;
aux = (stack*) malloc (sizeof(stack));
while(!empty(s)){
pop(s,&p);
if(strcmp(p.nome,str)==0){//achei a igual
while(!empty(aux)){//simplesmente sobreescrevi ela e passei tudo que eu tava tirando de volta pro lugar
pop(aux,&p);
push(s,&p);
}
return;
}
push(aux,&p);
}
printf("--ERROR NAME DOES NOT EXIST--\n");
while(!empty(aux)){
pop(aux,&p);
push(s,&p);
}
free (aux);
}
}