我工作的一个项目,从后缀转换为中缀表达式。 我被卡住了一段时间,但我有工作然后我意识到我需要每个操作数之间inlcude空间的一部分,当我把它输入到user.I'm不知道如何采取一个字符串,不能包含空格我怎么会去这样做。 函数getline不起作用,因为它包含空格。 因此,而不是AB +的我需要接受它为:AB +。 我不知道如何做到这一点不包括字符串。 这是我到目前为止的代码。
#include "stack.h"
void convert(string expression){
stack c;
string post =" ";
string rightop="";
string leftop="";
string op ="";
for (int i =0; i<=expression.length()-1;i++){
c.push(expression[i]);
c.print();
if (expression[i] == '*' ||
expression[i] == '+' ||
expression[i] == '-' ||
expression[i] == '/'){
cout<<c.top()<<endl;
leftop=c.top();
cout<<leftop<<endl;
c.pop();
rightop=c.top();
cout<<rightop<<endl;
c.pop();
op=c.top();
cout<<op<<endl;
c.top()=expression[i+1];
//c.pop();
post="(" + leftop + " " + op + " " + rightop + ")";
cout<<post<<endl;
}
//c.push(post);
}
}
int main(){
string expression;
cout<<" Enter a Post Fix expression: ";
getline(cin,expression);
convert(expression);
return 0;
}