-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1069.cpp
105 lines (81 loc) · 1.24 KB
/
1069.cpp
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 <string.h>
#ifndef PILHA_H
#define PILHA_H
#include<stdio.h>
#define MAX 100
typedef char
tp_item;
typedef struct
{
tp_item item[MAX];
int topo;
}tp_pilha;
void inicializa_pilha(tp_pilha *p)
{
p->topo = -1;
}
void pilha_quest(tp_pilha *p){
tp_pilha aux;
tp_item e;
inicializa_pilha(&aux);
while(!pilha_vazia(p)){
pop(p,&e);
if(e == '(');
}
}
int pilha_vazia(tp_pilha *p)
{
if (p->topo == -1) return 1;
return 0;
}
int pilha_cheia(tp_pilha *p)
{
if(p->topo == MAX-1) return 1;
return 0;
}
int push(tp_pilha *p, tp_item f)
{
if(pilha_cheia(p)) return 0;
p->topo++;
p->item[p->topo] = f;
return 1;
}
int pop(tp_pilha *p, tp_item *e){
if(pilha_vazia(p)) return 0;
*e=p->item[p->topo];
p->topo--;
return 1;
}
int top(tp_pilha *p, tp_item *e){
if (pilha_vazia(p)) return 0;
*e=p->item[p->topo];
return 1;
}
void imprime_pilha(tp_pilha p){
tp_item e;
printf("\n");
while (!pilha_vazia(&p)){
pop(&p, &e);
printf("%d ", e);
}
}
int altura_pilha(tp_pilha *p){
return p->topo+1;
}
#endif
int main(){
tp_pilha p;
tp_item e;
int n;
char str[1000];
scanf("%d",&n);
for(int i=0;i<n;i++){
inicializa_pilha(&p);
scanf("%s",str);
for(int j = 0;j<strlen(str);j++){
push(&p,str[j]);
}
pilha_quest(&p);
}
}