1 |
|
这本来是南阳理工oj的第267题,我只是完成了表达式的转换部分。
下面的这个是个位数操作数的中缀变后缀,是栈和队列写的。其实和上面的差不多,但是上面的二叉树建立了之后可以先序遍历中序遍历后序遍历变成各种形式的式子。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
using namespace std;
stack <char> ops;
queue <char> ovs;
int p(char);
int main()
{
char s[10005];
int i,k;
int N;
scanf("%d",&N);
while(N--)// 1+2*(3-4)/5=
{
scanf("%s",s);
ops.push('=');
for(i=0;;)
{
if(s[i]>='0' && s[i]<='9')
{
ovs.push(s[i]);i++;
}
else
{
if(s[i]=='\0')
{
while(!ops.empty())
{
ovs.push(ops.top());
ops.pop();
}
break;
}
else if(s[i]==')')
{
while(ops.top()!='(')
{
ovs.push(ops.top());ops.pop();
}
ops.pop();
i++;
}
else if(s[i]=='(' || p(s[i]) > p(ops.top()))
{
ops.push(s[i]);i++;
}
else //(s[i]!='=' && p(s[i])<= p(ops.top()) )
{
ovs.push(ops.top());
ops.pop();
}
}
}
while(ovs.size()!=1)
printf("%c",ovs.front()),ovs.pop();
printf("\n");
ovs.pop();
while(!ops.empty())
ops.pop();
}
return 0;
}
int p(char c)
{
switch(c)
{
case '*':
case '/':return 2;
case '+':
case '-':return 1;
case '(':
case ')':
case '=':return 0;
default :printf("%c_error!",c);exit(1);
}
}
有待完善。