2
該程序已成功編譯,但當我嘗試轉換下列中綴表達式'A * B + C/D'時,出現此錯誤消息:分段錯誤(核心轉儲)。它適用於像'a + b-c * d/e'這樣的表達式,但我不知道它是否正確。infix to postfix
#include<iostream>
#include<stack>
#include<string>
using namespace std;
string infix; // infix exression string
string operand;
string operate;
stack <string> mystack; // this stack is used to push the operator
string postfix; // postfix string where the operand is appended
//....................................................................
// this function read the infix expression from user
string input()
{
cout<<" Enter the damn infix expression: "<<endl;
getline(cin, infix);
return infix;
}
//......................................................................
// this function checks for operator precedency in the stack
int precedence(string e)
{
int f;
if(e == "*" || e== "/" || e =="%")
f = 2;
else
{
if(e == "+" || e == "-")
f = 1;
}
if(e=="."){
f=0;
}
return f;
}
//....................................................................
// This function converts infix to postfix
string convert()
{
for(int i=0; i<infix.length(); i++)
{
switch(infix[i]){
// operate case start
case '+': case'-': case'*': case'/': case'^': case '(': case ')': case'.':
operate=infix[i];
{
if(mystack.empty() || precedence(operate)>= precedence(mystack.top()))
{
mystack.push(operate);
break;
}
else
{
while(precedence(operate)< precedence(mystack.top()))
{
postfix.append(mystack.top());
mystack.pop();
}
mystack.push(operate);
}
}//operate case closed
default: //when operand string char is parsed
{
operand=infix[i];
postfix.append(operand);
break;
} // default case closed
}//switch closed
}// for loop close
while(!mystack.empty())
{
postfix.append(mystack.top());
mystack.pop();
}
return postfix;
cout<<postfix;
} // function close braces
//...................................................................
int main()
{
input();
convert();
cout<<"postfix is "<<postfix<<endl;
}
這是什麼問題? – 2010-10-03 03:38:18
在發佈它之前,您可能已經對此代碼進行了相當多的簡化。 – Beta 2010-10-03 03:54:58