中缀表达式到后缀表达式的转换【栈】

                              中缀表达式到后缀表达式的转换

具体操作看这位大佬的博客前缀、中缀、后缀表达式(逆波兰表达式),本人用c++实现了加减乘除四种运算符的转换:

代码:

#include<bits/stdc++.h>

using namespace std;

//2+8/6-(7-5x4+9x2/7)

string convertInfixToPRN(const string& exp)
{
	int len=exp.length();
	stack<char> stack_ans,stack_operator;
	
	int pos=0;
	while(pos<=len-1){
		if(exp[pos]<='9'&&exp[pos]>='0'){
			while(pos<exp.length()&&exp[pos]<='9'&&exp[pos]>='0') {stack_ans.push(exp[pos]);pos++;}
			pos--;
		
		}
		else if(exp[pos]=='*'){
			while(!stack_operator.empty()&&(stack_operator.top()=='*'||stack_operator.top()=='/')){
				stack_ans.push(stack_operator.top());
				stack_operator.pop();
			}
			stack_operator.push(exp[pos]);
		}
		else if(exp[pos]=='/'){
			while(!stack_operator.empty()&&(stack_operator.top()=='*'||stack_operator.top()=='/')){
				stack_ans.push(stack_operator.top());
				stack_operator.pop();
			}
			stack_operator.push(exp[pos]);
		}
		else if(exp[pos]=='+'){
			while(!stack_operator.empty()&&(stack_operator.top()=='*'||stack_operator.top()=='/'||stack_operator.top()=='+'||stack_operator.top()=='-')){
				stack_ans.push(stack_operator.top());
				stack_operator.pop();
			}
			stack_operator.push(exp[pos]);
		}
		else if(exp[pos]=='-'){
			while(!stack_operator.empty()&&(stack_operator.top()=='*'||stack_operator.top()=='/'||stack_operator.top()=='+'||stack_operator.top()=='-')){
				stack_ans.push(stack_operator.top());
				stack_operator.pop();
			}
			stack_operator.push(exp[pos]);
		}
		else if(exp[pos]=='(') stack_operator.push(exp[pos]);
		else if(exp[pos]==')'){
			while(stack_operator.top()!='('){
				stack_ans.push(stack_operator.top());
				stack_operator.pop();
			}	
			stack_operator.pop();
		}
		pos++;
	}
	
	string ans;
	while(!stack_operator.empty()){stack_ans.push(stack_operator.top());stack_operator.pop();}
	while(!stack_ans.empty()){ans=stack_ans.top()+ans;stack_ans.pop();}
	return ans;
}

int main()
{
	string tmp;
	cin >>tmp;
	cout <<convertInfixToPRN(tmp) <<endl;
}

样例:

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值