-
Notifications
You must be signed in to change notification settings - Fork 48
/
1068.c
65 lines (47 loc) · 1.13 KB
/
1068.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
/*
@autor: Malbolge;
@data: 09/10/2018;
@nome: Balanço de Parênteses I;
*/
#include <stdio.h>
#include <string.h>
#include <stdbool.h>
bool verificaBalancoParenteses (char *);
void main ()
{
char expressao[1100];
while (scanf(" %s", expressao) != EOF)
{
if(verificaBalancoParenteses(expressao))
printf("correct\n");
else
printf("incorrect\n");
}
}
bool verificaBalancoParenteses(char *str)
{
short qtsP = 0;
// Se a expressão começar com uma parêntese que fecha
// Já não esta balanceada;
if (*str == ')')
return false;
// Enquanto a string não acabar ou o balanço for irrecuperável
while ((*str) && (qtsP >= 0))
{
// Se achar um parentese que abre, incrementa variável;
if (*str == '(')
qtsP++;
// Se achar um parentese que fecha, decrementa;
if (*str == ')')
qtsP --;
str++;
// Se por um acaso foram encontrados mais parênteses de fechamento do que
// de abertura, a variável 'qtsP' irá para a próxima iteração negativa;
// O que fará o laço while mais externo sair pois o balanço estará
// Irrecuperrável;
}
if (qtsP == 0)
return true;
else
return false;
}