-
Notifications
You must be signed in to change notification settings - Fork 1
/
q3.cpp
251 lines (210 loc) · 4.94 KB
/
q3.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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
#include <iostream>
#include <string>
#include <map>
#include <stack>
#include <math.h>
using namespace std;
// 3. 表达式·表达式树·表达式求值
// 中缀转后缀,week2的q3里有类似的算法
// 后缀转二叉树,需要点技巧
// 打印二叉树比较麻烦
struct BinaryTreeNode {
char data;
BinaryTreeNode* left;
BinaryTreeNode* right;
BinaryTreeNode(char x) : data(x), left(NULL), right(NULL) {}
};
// 图形模式的树
char pic[50][300];
// 两数运算
int arithmetic(int num1, int num2, char operation) {
int res = 0;
switch (operation) {
case '+':
res = num1 + num2;
break;
case '-':
res = num2 - num1;
break;
case '*':
res = num1 * num2;
break;
case '/':
res = num2 / num1;
break;
default:
break;
}
return res;
}
string infix2postfix(string s) {
int n = s.size();
string postfix;
// 添加负号的前导0
for (int i = 0; i < n; i++) {
char ch = s[i];
if (ch == '-') {
if (i == 0) {
s = '0' + s;
} else if (s[i - 1] == '(') {
s = (s.substr(0, i) + '0' + s.substr(i, n - i));
}
}
}
stack<char> symbol = stack<char>();
// 符号优先度映射表
map<char, int> operationPriority;
operationPriority.insert(make_pair('+', 0));
operationPriority.insert(make_pair('-', 0));
operationPriority.insert(make_pair('*', 1));
operationPriority.insert(make_pair('/', 1));
n = s.size();
for (int i = 0; i < n; i++) {
char ch = s[i];
if ((ch >= 97 && ch <= 122) || ch == 48) {
// 变量优先输出
postfix += ch;
} else if (ch == ')') {
// 优先计算小括号的内容
while (symbol.top() != '(') {
postfix += symbol.top();
symbol.pop();
}
// 去掉左小括号
symbol.pop();
} else if (ch == '(') {
symbol.push(ch);
} else {
// 运算符
while (!symbol.empty()) {
char currSymbol = symbol.top();
// 弹出直到遇到比其优先度小的符号或括号
if (currSymbol == '(') {
break;
} else if (operationPriority[ch] <= operationPriority[currSymbol]) {
postfix += currSymbol;
symbol.pop();
} else {
break;
}
}
symbol.push(ch);
}
}
// 输出剩余运算符
while (!symbol.empty()) {
postfix += symbol.top();
symbol.pop();
}
return postfix;
}
// 计算后缀表达式
int cal(string postfix, map<char, int>& values) {
stack<int> nums;
int n = postfix.length();
for (int i = 0; i < n; i++) {
char ch = postfix[i];
if ((ch >= 97 && ch <= 122) || ch == 48) {
nums.push(values[ch]);
} else {
int num1 = nums.top();
nums.pop();
int num2 = nums.top();
nums.pop();
nums.push(arithmetic(num1, num2, ch));
}
}
return nums.top();
}
// 根据后缀建树
BinaryTreeNode* buildTree(string postfix) {
stack<BinaryTreeNode *> variables;
int n = postfix.size();
for (int i = 0; i < n; ++i) {
char ch = postfix[i];
BinaryTreeNode * node = new BinaryTreeNode(postfix[i]);
if ((ch >= 97 && ch <= 122) || ch == 48) {
// 数字入栈
variables.push(node);
} else {
// 遇到运算符,则将它前两个元素作为它的左右子树,并入栈
node->right = variables.top();
variables.pop();
node->left = variables.top();
variables.pop();
variables.push(node);
}
}
return variables.top();
}
// 确定图形化的树,存储到pic数组
// x行号,y列号
// 这里比较坑,子结点之间的空格是由其深度决定的
void drawTree(BinaryTreeNode* root, int x, int y, int space) {
pic[x][y] = root->data;
if (root->left != NULL) {
pic[x + 1][y - 1] = '/';
drawTree(root->left, x + 2, y - space, space >> 1);
}
if (root->right != NULL) {
pic[x + 1][y + 1] = '\\';
drawTree(root->right, x + 2, y + space, space >> 1);
}
}
// 打印树
void printTree(int height){
// 行数量包含 '\' '/' 符号
for (int i = 0; i < 2 * height - 1; i++) {
// 找到当前行的最后一个空字符,打上结尾标记
int j = 299;
while (pic[i][j--] == ' ');
pic[i][j + 2] = '\0';
cout << pic[i] << endl;
}
}
// 返回高度
int layers(BinaryTreeNode* root) {
if (root == NULL) {
return 0;
}
int left = layers(root->left);
int right = layers(root->right);
// +1是要包含当前结点
// 根结点的高度为1,深度为0
return left > right ? left + 1 : right + 1;
}
int main(int argc, char *argv[]) {
string infix;
getline(cin, infix);
// 中缀转后缀
string postfix = infix2postfix(infix);
cout << postfix << endl;
// 后缀建树
BinaryTreeNode* root = buildTree(postfix);
// 树图形化显示
for (int i = 0; i < 50; i++) {
for (int j = 0; j < 300; j++) {
// 初始化为空
pic[i][j] = ' ';
}
}
int height = layers(root);
int y = pow(2, height - 1) - 1;
drawTree(root, 0, y, (y + 1) >> 1);
printTree(height);
// 计算表达式的值
int n = 0;
cin >> n;
map<char, int> values;
while (n--) {
char variable = '\0';
int value = 0;
cin >> variable;
cin.get();
cin >> value;
cin.get();
values.insert(make_pair(variable, value));
}
cout << cal(postfix, values) << endl;
return 0;
}