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 pathexercicio_pilha_8.c
103 lines (87 loc) · 1.72 KB
/
exercicio_pilha_8.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
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#define MAX 20
#define bool int
#define true 1
#define false 0
typedef struct stack{
char frase[MAX];
char top;
char bottom;
} stack;
void listar(stack *s);
void pop(stack *s, char *c);
bool push(stack *s,char *c);
bool full(stack *s);
bool empty(stack *s);
void reset(stack *s);
int main(int argc, char const *argv[])
{
stack *s = (stack*) malloc (sizeof(stack));
char ch;
printf("Digite a entrada: \n");
while(scanf("%c",&ch) && ch!='\n'){
if(ch == '('){
push(s,&ch);
}
else if(ch == ')'){
pop(s,&ch);
if(s->top==0 && ch == ')'){
printf("A parentização está incorreta. Não posso ter um ')' sem antes ter um '('.");
free(s);
return 0;
}
}
}
//o while não verifica se eu tiver mais ( do que )
if(s->top==0){
printf("A parentização está correta.");
}
else{
printf("A parentização está incorreta. Tem mais '(' do que ')'");
}
//listar(s);
free(s);
return 0;
}
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,char *c){
if(!full(s)){
s->frase[s->top] = *c;
s->top++;
return true;
}
return false;
}
void pop(stack *s, char *c){
if(empty(s)){
//printf("--EMPTY STACK. CANNOT DELETE--\n");
return;
}
s->top--;
*c = s->frase[s->top];
}
void listar(stack *s){
stack *s_aux = (stack*) malloc(sizeof(stack));
char aux;
while(!empty(s)){//esvazia a pilha pra mostrar
pop(s,&aux);
push(s_aux,&aux);
printf(" %c ",aux);
}
while(!empty(s_aux)){//enche a pilha de novo
pop(s_aux,&aux);
push(s,&aux);
}
free(s_aux);
}