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

本文介绍了一种算法,该算法将包含加减乘三种运算符的中缀表达式转换为前缀表达式。通过使用两个栈结构,分别处理运算符与操作数,实现了从右到左扫描输入字符串,并根据运算符优先级进行转换。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

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

// 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;

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值