【字符串】表达式求值

转载
中缀表达式处理模板

#include<iostream>
#include<cstdio>
#include<cstring>
#include<stack>
#include<cmath>
#include<algorithm>
#define Maxn 100000
using namespace std;
int n,m;
stack<int> s1;
stack<char> s2;
inline int strlen_t(char t[])
{
	int cnt=0;
	for(int i=1;i<=Maxn;i++)
	{
		if(t[i]!='\0') ++cnt;
		else break;
	}
	return cnt;
} 
inline int lev(char x)
{
	if(x=='+'||x=='-') return 1;
	if(x=='*'||x=='/') return 2;
	if(x=='^') return 3;
	return 0;
}
 
inline void calculate(stack<int> &s1,stack<char> &s2)
{
	int y=s1.top();s1.pop();
	int x=s1.top();s1.pop();
	char z=s2.top();s2.pop();
	if(z=='+') s1.push(x+y);
	if(z=='-') s1.push(x-y);
	if(z=='*') s1.push(x*y);
	if(z=='/') s1.push(x/y);
	if(z=='^') s1.push((int)pow(x,y));
}
 
inline int c(int x)
{
	return x!=0;
}
 
char str[Maxn];
int sum[Maxn];
int main()
{
	scanf("%s",str+1);
//	cout<<strlen_t(str)<<endl<<strlen_t(str+1)<<endl;
	n=strlen_t(str);
//	printf("%d\n",str[0]);
/*	for(int i=0;i<=n;i++)
	{
		cout<<str[i];
	}*/
	int temp=0;
	bool flag=false;
	for(int i=1;i<=n;i++)
	{
		if('0'<=str[i]&&str[i]<='9')
		{
			temp=temp*10+str[i]-'0';
			flag=true;
		}
		else
		{
			if(flag==true)
			{
				s1.push((temp));
				temp=0;
				flag=false;
			}
			if(str[i]=='(')
			{
				s2.push(str[i]);
				continue;
			}
			if(str[i]==')')
			{
				while(s2.top()!='(')
				{
					calculate(s1,s2);
				}
				s2.pop();
				continue;
			}
			while(!s2.empty()&&lev(s2.top())>=lev(str[i]))
			{
				calculate(s1,s2);
			}
			s2.push(str[i]);
		}
	}
	if(flag==1)
	{
		s1.push(temp);
		temp=0;
		flag=false;
	}
	while(!s2.empty())
	{
		calculate(s1,s2);
	}
	cout<<s1.top()<<endl;
	return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值