-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path1069-URI-100%WRONG.c
159 lines (134 loc) · 4.47 KB
/
1069-URI-100%WRONG.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
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <ctype.h>
// para corrigir:
// o programa deve primeiro pegar todas as entradas para entregar as saidas.
// DEFINES ********************************************************************************************************************
#define Max 1010
// DECLARAÇÃO DA STRUCT *******************************************************************************************************
struct pilha
{
int topo,item[1010];
};
// DECLARAÇÃO DE FUNÇÕES AUXILIARES *******************************************************************************************
void IniciaPilha(struct pilha *AA); //INICIA A PILHA
int PilhaVazia(struct pilha *AA); //VERIFICA DE A PILHA ESTÁ VAZIA
int Push(struct pilha *AA,int valor); //ADICIONA UM ELEMENTO NA PILHA
int Pop(struct pilha *AA); //TIRA UM ELEMENTO DA PILHA
int Mostra(struct pilha *AA);
char *LerExpressao(char *str);
struct pilha *TrataDiamante(char*str);
// FUNÇÂO PRINCIPAL ***********************************************************************************************************
int main()
{
int aux,diamantes,fecha,i,n=1;
char* expressao;
struct pilha *parenteses;
bool certo=true;
scanf("%d",&n);
setbuf(stdin,NULL);
for(i=1;i<=n;i++)
{
expressao = LerExpressao(expressao);
parenteses = TrataDiamante(expressao);
/*printf("EM UMA STRING: %s\n",expressao);
if(!PilhaVazia(parenteses))
{
printf("EM UMA PILHA:");
Mostra(parenteses);
printf("\n");
}*/
fecha=0;diamantes=0;
do {
if(!PilhaVazia(parenteses))
aux=Pop(parenteses);
else
aux=0;
if(aux== '>')
fecha++;
else if(aux=='<' && fecha) {
fecha--;
diamantes++;
}
} while (!PilhaVazia(parenteses));
printf("%d\n",diamantes);
}
return 0;
}
// FUNÇÕES AUXILIARES *********************************************************************************************************
void IniciaPilha(struct pilha *AA) {
AA->topo=-1;
}
//-----------------------------------------------------------------------------------------------------------------------------
int PilhaVazia(struct pilha *AA) {
if(AA->topo==-1)
return 1;
else
return 0;
}
//-----------------------------------------------------------------------------------------------------------------------------
int Push(struct pilha *AA,int valor) {
return (AA->item[++(AA->topo)]=valor);
}
//-----------------------------------------------------------------------------------------------------------------------------
int Pop(struct pilha *AA) {
int aux;
aux = AA->item[(AA->topo)--];
return aux;
}
//-----------------------------------------------------------------------------------------------------------------------------
int Mostra(struct pilha *AA)
{
int aux;
struct pilha AAux;
IniciaPilha(&AAux);
//system("cls");
while (!PilhaVazia(AA)) {
aux=Pop(AA);
printf(" %d",aux);
Push(&AAux,aux);
}
while (!PilhaVazia(&AAux)) {
aux=Pop(&AAux);
Push(AA,aux);
}
}
//-----------------------------------------------------------------------------------------------------------------------------
char *LerExpressao(char *str)
{
str = (char *)malloc(0);
int c,i=0;
while ((c=getchar())!='\n') {
i++;
str= (char *)realloc(str,i*sizeof(char));
if(str==NULL) {
printf("MEMORIA INSUFICIENTE.\n");
exit(1);
}
str[i-1]=c;
}
str = (char *)realloc(str,(i+1)*sizeof(char));
if(str==NULL) {
printf("MEMORIA INSUFICIENTE\n");
exit(1);
}
str[i]='\0';
//printf("%s\n",str);
return str;
}
//-----------------------------------------------------------------------------------------------------------------------------
struct pilha *TrataDiamante(char*str) {
struct pilha *retorno;
int i=0,c;
retorno= (struct pilha *)malloc(sizeof(struct pilha));
IniciaPilha(retorno);
while(str[i] != '\0') {
c=str[i];
if(!isdigit(c)) {
if(c=='<' || c=='>')Push(retorno,c);
}
i++;
}
return retorno;
}