【发布时间】:2019-12-27 07:14:24
【问题描述】:
我试图在 1 遍中评估一个中缀表达式而不将其转换为后缀,但它没有为某些表达式提供正确的输出。例如: 3-5*10/5+10 , (45+5)-5*(100/10)+5
有人可以在 cpp.
上一个问题的链接:How to evaluate an infix expression in just one scan using stacks?
请不要将其标记为重复,因为我已尝试在上述给定线程中回答的算法但无济于事。
#include<bits/stdc++.h>
int isoperand(char x)
{
if(x == '+' || x=='-'|| x=='*' || x=='/' || x==')' || x=='(')
return 0;
return 1;
}
int Pre(char x)
{
if(x == '+' || x == '-')
return 1;
if(x == '*' || x == '/')
return 3;
return 0;
}
int infixevaluation(std::string exp)
{
std::stack<int> s1; //Operand Stack
std::stack<char> s2; //Operator Stack
int i,x,y,z,key;
i=0;
while(exp[i]!='\0')
{
if(isoperand(exp[i]))
{
key = exp[i]-'0';
s1.push(key);
i++;
}
else if(!isoperand(exp[i]) && s2.empty())
s2.push(exp[i++]);
else if(!isoperand(exp[i]) && !s2.empty())
{
if(Pre(exp[i])>Pre(s2.top()) && exp[i]!=')')
s2.push(exp[i++]);
else if(exp[i]==')' && s2.top() == '(')
{
s2.pop();
i++;
}
else if(exp[i]=='(')
s2.push(exp[i++]);
else
{
x = s1.top();
s1.pop();
y = s2.top();
s2.pop();
z = s1.top();
s1.pop();
if(y == '+')
s1.push(z+x);
else if(y == '-')
s1.push(z-x);
else if(y == '*')
s1.push(x*z);
else if(y == '/')
s1.push(z/x);
}
}
}
while(!s2.empty())
{
x = s1.top();
s1.pop();
y = s2.top();
s2.pop();
z = s1.top();
s1.pop();
if(y == '+')
s1.push(x+z);
else if(y == '-')
s1.push(z-x);
else if(y == '*')
s1.push(x*z);
else if(y == '/')
s1.push(z/x);
}
return s1.top();
}
int main(int argc, char const *argv[])
{
std::string s;
getline(std::cin,s);
std::cout<<infixevaluation(s)<<std::endl;
return 0;
}
【问题讨论】:
-
预期输出是多少,实际输出是多少?另外,debugging your program 是否允许您缩小问题所在?
-
它为表达式 (45+5)-5*(100/10)+5 和 3-5*10/5+10 输出为 1 而不是3.
-
异常是崩溃,不是输出。您的下一步应该是debug your program 以确定崩溃发生的位置。然后简化您的程序(删除功能),直到您有一个 minimal reproducible example 来演示崩溃。
-
小心
#include<bits/stdc++.h>它包含了几乎整个标准库,把你的代码变成了雷区。你还没有加入using namespace std;,这确实让 stdc++.h 成为一个坏主意,因为你的代码变成了一个非常大的雷区,但是有一个 whole bunch of other reasons not to use it. -
如果你使用有意义的变量名,你的代码会更容易理解。例如,
s1可以是operandStack。而不是x = s1.top(),operand1 = operandStack.top()怎么样?在生产环境中,我什至不会检查此代码是否正确运行,直到它具有有意义的变量名称。
标签: c++ stack infix-notation