栈的应用:中缀表达式转化为前缀表达式

@中缀表达式转化为前缀表达式(只含*±三个运算符)

// Created by leo_frank on 2019/3/24.
//
#include
#include
#include
#include
#include
#include
using namespace std;

bool check(char a ,char b )
{
if ( a == ‘+’ || a==’-’)
{
if ( b==’-’ || b == ‘+’) return true;
else return false;
}
else if ( a == ‘*’ )
{
return true ;
}
}
int main(int argc, const char * argv[]) {
char s[50];
scanf("%s",s);

stack < char > s1,s2;//s1是运算符栈,s2是操作数栈;
for ( int i = strlen(s)-1; i>=0; i--)
{
    if ( isdigit(s[i])) s2.push(s[i]);
    else if ( strchr("+-*",s[i])!=NULL )
    	{
        	if ( s1.empty() || s1.top() == ')' ) s1.push(s[i]);
        	else
            {
                if ( check(s[i],s1.top())) s1.push(s[i]);
                else
                {
                    while ( !(check(s[i],s1.top())) )
                    {   
                        s2.push(s1.top());
                        s1.pop();
                        if ( s1.empty() || (s1.top()==')') ) break;          //这一步比较重要,顺序不能提前。
                    }
                    s1.push(s[i]);          //while循环结束后不要忘了push。
                }
            }
    	}
    else if ( s[i] == ')' ) s1.push(s[i]);
    else if ( s[i] == '(' )
    {
        while ( s1.top()!=')') { s2.push(s1.top());s1.pop();}
		s1.pop();
    }
}
while ( !s1.empty())
    {
        s2.push(s1.top());
        s1.pop();
    }
while ( !s2.empty())
    {  	cout << s2.top();
        s2.pop();
    }
    cout << endl;


return 0;

}

  • 1
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
中缀表达式转换为前缀表达式的方法与转换为后缀表达式类似,只需要将中缀表达式从右往左扫描,然后按照相应的规则进行转换即可。具体步骤如下: 1. 初始化两个:运算符和结果。 2. 从右往左扫描中缀表达式的每个元素,如果是数字或者量,直接压入结果中。 3. 如果是运算符,则比较其与运算符顶元素的优先级: 1. 如果运算符为空,或者顶运算符为右括号,则直接将该运算符压入运算符中。 2. 如果该运算符优先级大于顶运算符优先级,则直接将该运算符压入运算符中。 3. 否则,将运算符顶的运算符弹出并压入结果中,直到遇到优先级小于该运算符的顶运算符,然后将该运算符压入运算符中。 4. 如果遇到右括号,则直接将其压入运算符中。 5. 如果遇到左括号,则依次弹出运算符中的运算符并压入结果中,直到遇到右括号为止。 6. 最后,将运算符中的所有运算符依次弹出并压入结果中。 7. 将结果中的元素依次弹出并输出即可得到前缀表达式。 下面是C++代码实现: ```c++ #include <iostream> #include <stack> #include <string> using namespace std; int getPriority(char op) { if (op == '+' || op == '-') return 1; if (op == '*' || op == '/') return 2; if (op == '^') return 3; return 0; } string infixToPrefix(string infix) { stack<char> opStack; string prefix; for (int i = infix.size() - 1; i >= 0; i--) { char ch = infix[i]; if (isdigit(ch) || isalpha(ch)) { prefix = ch + prefix; } else if (ch == ')') { opStack.push(ch); } else if (ch == '(') { while (!opStack.empty() && opStack.top() != ')') { prefix = opStack.top() + prefix; opStack.pop(); } opStack.pop(); } else { while (!opStack.empty() && getPriority(opStack.top()) > getPriority(ch)) { prefix = opStack.top() + prefix; opStack.pop(); } opStack.push(ch); } } while (!opStack.empty()) { prefix = opStack.top() + prefix; opStack.pop(); } return prefix; } int main() { string infix = "a+b-a*((c+d)/e-f)+g"; string prefix = infixToPrefix(infix); cout << prefix << endl; // 输出:+a-b+*a/-c+defg return 0; } ```

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值