【SPOJ-ARTHEVAL】Arithmetic Evaluation【表达式求值】

题目将难度降低了。

从左到右计算就好,不用在乎四则运算法则。


开一个数字栈,一个符号栈。

遇到数字,直接进数字栈。

遇到左括号,直接进符号栈。

遇到+-*号,如果符号栈顶元素不是左括号,那么先update(把符号栈顶元素取出来,把数字栈顶两个数字取出来,算完把结果放回数字栈),然后再把符号放到符号栈。

遇到右括号,一直update,直到遇到左括号,然后把左括号pop掉。


处理完后还得update,直到符号栈没元素。


(没想到自己能写出来


#include <cstdio>
#include <cstring>
#include <stack>

using namespace std;

const int maxn = 100000;

int n;
char str[maxn];

stack<int> num, opt;

/*
	(	0
	)	1
	+	2
	-	3
	*	4
*/

inline int get(int x, int y, int opt) {
	if(opt == 2) return x + y;
	if(opt == 3) return x - y;
	if(opt == 4) return x * y;
}

inline void update() {
	int x = num.top(); num.pop();
	int y = num.top(); num.pop();
	int op = opt.top(); opt.pop();
	int ans = get(y, x, op);
	num.push(ans);
}

int main() {
	scanf("%s", str); n = strlen(str);
	
	for(int i = 0; i < n; ) {
		if(str[i] >= '0' && str[i] <= '9') {
			int x = 0;
			for(; i < n && str[i] >= '0' && str[i] <= '9'; i++) x = x * 10 + str[i] - '0';
			num.push(x);
		} else {
			if(str[i] == '(') {
				opt.push(0);
				i++;
			}
			else if(str[i] == '+') {
				if(!opt.empty() && opt.top() != 0) update();
				opt.push(2);
				i++;
			}
			else if(str[i] == '-') {
				if(!opt.empty() && opt.top() != 0) update();
				opt.push(3);
				i++;
			}
			else if(str[i] == '*') {
				if(!opt.empty() && opt.top() != 0) update();
				opt.push(4);
				i++;
			}
			else {
				for(; opt.top() != 0; ) update();
				opt.pop();
				i++;
			}	
		}
	}
	for(; !opt.empty(); ) update();
	printf("%d\n", num.top());
	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值