以下是我在 cpp 中将中缀转换为后缀表达式的代码?我已经尝试了一切,但我的代码没有给我想要的结果?请有人帮助我....plzzzzzz。
尽管我认为代码是正确的,但它只是不起作用。我花了很多时间检查此代码并检查了 evry 行的工作,但仍然无法正常工作。
#include <iostream>
#include<conio.h>
using namespace std;
int k=-1,m=0;
int j=0;
string infi,postfi,operato;
int precedence(char s)
{
switch(s)
{
case '+':
case '-':
return 1;
break;
case '*':
case '/':
return 2;
break;
case '$':
return 3;
break;
case '(':
return 4;
break;
case ')':
return 5;
break;
}
}
void operat()
{
if(k==-1)
{
k++;
operato[k]=infi[j];
//cout<<operato[0]<<"mm";
}
else if(precedence(infi[j])==4)
{
//cout<<"0000";
k++;
operato[k]=infi[j];
}
else if(precedence(infi[j])==5)
{
//cout<<"0000";
while(operato[k]!='(')
{
postfi[m]=operato[k];
m++;
k--;
}
k--;
}
else if(precedence(infi[j])>precedence(operato[k]))
{
//cout<<"0000";
k++;
operato[k]=infi[j];
}
else
{
//cout<<"0000";
postfi[m]=operato[k];
k--;
m++;
operat();
}
//cout<<postfi[0]<<"pp";
}
int main()
{
cin>>infi;
while(infi[j]!='\0')
{
if(infi[j]=='+'||infi[j]=='-'||infi[j]=='*'||infi[j]=='/'||infi[j]=='('||infi[j]==')'||infi[j]=='$')
{
operat();
j++;
}
else
{
postfi[m]=infi[j];
//cout<<postfi[0];
//cout<<"me"<<m<<postfi[m];
m++;
j++;
}
}
while(k!=-1)
{
postfi[m]=operato[k];
//cout<<postfi[0];
//cout<<"me"<<m;
//cout<<"meow"<<m<<postfi[m];
k--;
m++;
}
//cout<<postfi[0];
int g;
for(g=0;g<m;g++)
cout<<postfi[g];
//getch();
return(0);
}