-
Notifications
You must be signed in to change notification settings - Fork 0
/
CTDL097.cpp
47 lines (43 loc) · 1.43 KB
/
CTDL097.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
#include <bits/stdc++.h>
using namespace std;
template <class val>
/*
void check(string s){
stack <string> temp; // tạo stack để push các toán hạng vào
for (char c : s){
if (c == '+' || c == '*' || c == '-' || c == '/' || c == '^'){ // nếu kí tự tiếp theo là các dấu thì pop 2 phần tử trong stack ra (tương ứng với 2 toán hạng) và cộng lại thành 1 string mới rồi push ngược lại vào stack
string a = temp.top(); // VD: B
temp.pop();
string b = temp.top(); // Vd: A
temp.pop();
string x = c + b + a; // VD: '+' + 'B' + 'A'
temp.push(x); // push +AB
}else{
temp.push(string{c}); // push các toán hạng ( lưu ý chuyển đổi char c sang string để có thể push vào stack <string>) // temp.push(str.append(1, c))
}
}
cout<<temp.top()<<endl; // VD: +AB-CD
}
int main(){
int t; cin >> t;
while(t--){
string s;
cin >> s;
check(s);
}
}
*/
void doit(string s){
stack<char> prefix;
prefix.push('(');
for (int i = 0; i < s.size(); i++){
if (s.[i] >= 'A'){
prefix.push(s[i]);
}else if (42 <= s[i] <= 47){
char temp = prefix.top();
prefix.pop();
prefix.push(s[i]);
prefix.push(temp);
}
}
}