中缀后缀之间的转换。HOJ1038 Complicated Expressions。

先将含有多余括号的中缀表达式转换为无括号的后缀表达式。

再转换为含有最少括号的中缀表达式。

stl stack实现。



Complicated Expressions


Time limit:5sec.Submitted:86
Memory limit:32MAccepted:40
Source: ACM ICPC Central European Regional 2000

The most important activity of ACM is the GSM network. As the mobile phone operator, ACM must build its own transmitting stations. It is very important to compute the exact behaviour of electro-magnetic waves. Unfortunately, prediction of electro-magnetic fields is a very complex task and the formulas describing them are very long and hard-to-read. For example, below are the Maxwell's Equations describing the basic laws of electrical engineering.

1038_a.gif       1038_b.gif
1038_c.gif
1038_d.gif
ACM has designed its own computer system that can make some field computations and produce results in the form of mathematic expressions. Unfortunately, by generating the expression in several steps, there are always some unneeded parentheses inside the expression. Your task is to take these partial results and make them "nice" by removing all unnecessary parentheses.

Input Specification

There is a single positive integer T on the first line of input. It stands for the number of expressions to follow. Each expression consists of a single line containing only lowercase letters, operators (+, -, *, /) and parentheses (( and )). The letters are variables that can have any value, operators and parentheses have their usual meaning. Multiplication and division have higher priority then subtraction and addition. All operations with the same priority are computed from left to right (operators are left-associative). There are no spaces inside the expressions. No input line contains more than 250 characters.

Output Specification

Print a single line for every expression. The line must contain the same expression with unneeded parentheses removed. You must remove as many parentheses as possible without changing the semantics of the expression. The semantics of the expression is considered the same if and only if any of the following conditions hold:

  • The ordering of operations remains the same. That means "(a+b)+c" is the same as "a+b+c", and "a+(b/c)" is the same as "a+b/c".
  • The order of some operations is swapped but the result remains unchanged with respect to the addition and multiplication associativity. That means "a+(b+c)" and "(a+b)+c" are the same. We can also combine addition with subtraction and multiplication with division, if the subtraction or division is the second operation. For example, "a+(b-c)" is the same as "a+b-c".

You cannot use any other laws, namely you cannot swap left and right operands and you cannot replace "a-(b-c)" with "a-b+c".

Sample Input
8
(a+(b*c))
((a+b)*c)
(a*(b*c))
(a*(b/c)*d)
((a/(b/c))/d)
((x))
(a+b)-(c-d)-(e/f)
(a+b)+(c-d)-(e+f)
Sample Output
a+b*c
(a+b)*c
a*b*c
a*b/c*d
a/(b/c)/d
x
a+b-(c-d)-e/f
a+b+c-d-(e+f) 

说明:

将给定中缀表达式中多余的括号去掉。

代码如下:

 
  
#include < iostream >
#include
< stack >
using namespace std;

int op( char x) {
if (x == ' + ' ) return 1 ;
else if (x == ' - ' ) return 1 ;
else if (x == ' * ' ) return 2 ;
else if (x == ' / ' ) return 2 ;
else return 0 ;
}

int main() {
int t;
cin
>> t;
while (t -- ) {
string ex;
string tmp = "" ;
stack
< char > a, b;
cin
>> ex;

// 中缀转换为后缀。
for ( int i = 0 ; i < ex.length(); i ++ ) {
if (ex[i] >= ' a ' && ex[i] <= ' z ' )tmp += ex[i];
else if (ex[i] == ' ( ' ) a.push(ex[i]);
else if (ex[i] == ' ) ' ) {
while (a.top() != ' ( ' ) {
tmp
+= a.top();
a.pop();
}
a.pop();
}
else {
if (a.empty() || op(ex[i]) > op(a.top()))a.push(ex[i]);
else {
while (op(ex[i]) <= op(a.top())) {
tmp
+= a.top();
a.pop();
if (a.empty()) break ;
}
a.push(ex[i]);
}
}
}
while ( ! a.empty()) {
tmp
+= a.top();
a.pop();
}

// 后缀转回中缀
stack < char > ope;
stack
< string > opn;
string tmp1, tmp2;
for ( int i = 0 ; i < tmp.length(); i ++ ) {
if (tmp[i] >= ' a ' && tmp[i] <= ' z ' ) {
string tt = "" ;
tt
+= tmp[i];
opn.push(tt);
ope.push(tmp[i]);
}
else {
if (op(ope.top()) != 0 && (op(tmp[i]) > op(ope.top()) || (op(tmp[i]) == op(ope.top()) && (tmp[i] == ' - ' || tmp[i] == ' / ' )))) {
tmp2
= " ( " ;
tmp2
+= opn.top();
tmp2
+= " ) " ;
}
else tmp2 = opn.top();
opn.pop();
ope.pop();
if (op(ope.top()) != 0 && op(tmp[i]) > op(ope.top())) {
tmp1
= " ( " ;
tmp1
+= opn.top();
tmp1
+= " ) " ;
}
else tmp1 = opn.top();
ope.pop();
opn.pop();
tmp1
+= tmp[i];
tmp1
+= tmp2;
opn.push(tmp1);
ope.push(tmp[i]);
}
}
cout
<< opn.top() << endl;
}
return 0 ;
}

转载于:https://www.cnblogs.com/yangchenhao8/archive/2011/06/09/2076281.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值