-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.cpp
140 lines (117 loc) · 4.01 KB
/
main.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
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
/*
* main.cpp
*
* Created on: 9.03.2017 г.
* Author: trifon
*/
#include <iostream>
#include "stack.h"
void testStack() {
Stack s;
for(int i = 1; i <= 10; i++)
s.push(i);
while (!s.empty())
std::cout << s.pop() << ' ';
}
char digitToChar(int d) {
if (d < 10)
return '0' + d;
return 'A' + (d - 10);
}
void baseConvert(int n, int k) {
Stack s;
if (n == 0)
s.push(0);
while (n > 0) {
s.push(n % k);
n /= k;
}
while (!s.empty())
std::cout << digitToChar(s.pop());
std::cout << std::endl;
}
void testBaseConvert() {
baseConvert(20, 2);
baseConvert(04712, 8);
baseConvert(124124, 10);
baseConvert(0x5A8B0, 16);
}
/*
* <израз> ::= <цифра> | (<израз><операция><израз>)
* <израз>
*/
int calculateExpr(char const* s) {
Stack stack;
while (*s) {
if (*s == '('); // Пропускаме
if (*s >= '0' && *s <= '9')
stack.push(*s - '0');
if (*s == '+' || *s == '-' || *s == '*' || *s == '/')
stack.push(*s);
if (*s == ')') {
// Трябва да сметнем!
int b = stack.pop();
char op = stack.pop();
int a = stack.pop();
int r = 0;
switch (op) {
case '+' : r = a + b;break;
case '-' : r = a - b;break;
case '*' : r = a * b;break;
case '/' : if (b != 0) r = a / b;
}
stack.push(r);
}
s++;
}
return stack.pop();
}
void testCalculateExpr() {
std::cout << calculateExpr("((2+(4*5))-3)") << std::endl;
std::cout << calculateExpr("1") << std::endl;
std::cout << calculateExpr("((2*(1+3))-7)") << std::endl;
std::cout << calculateExpr("(1+2)") << std::endl;
}
bool match(char open, char close) {
return open == '(' && close == ')' ||
open == '[' && close == ']' ||
open == '{' && close == '}';
}
bool checkParentheses(char const* s) {
Stack stack;
while (*s) {
if (*s == '(' || *s == '[' || *s == '{')
stack.push(*s);
if (*s == ')' || *s == ']' || *s == '}')
if (stack.empty() // Значи имаме повече затварящи от отварящи!
||
!match(stack.pop(), *s)) // Значи скобите не съвпадат по тип!
return false;
s++;
}
return stack.empty(); // ако стекът не е празен, значи имаме повече отварящи от затварящи скоби!
}
void printTest(char const *s) {
std::cout << s << " -> " << checkParentheses(s) << std::endl;
}
void testCheckParentheses() {
printTest("()");
printTest("(]");
printTest("nothing");
printTest("(([{[{}]}([])]))");
printTest("(([{[{}]}[])]))");
printTest("(([{[{}]}([])))");
printTest("(");
printTest("]");
printTest("((((((((((())))))))))");
printTest("((((((((((())))))))))))");
printTest(")(");
printTest("(((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((())))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))");
}
int main() {
// testStack();
// testBaseConvert();
// testCalculateExpr();
testCheckParentheses();
return 0;
}