ZOJ 1958||POJ 2269 Friends(表达式计算)

27 篇文章 0 订阅

我的做法是把中缀的表达式转换成后缀的便于计算

#include <iostream>
#include <cstdio>
#include <memory.h>
#include <cstring>
#include <string>
#include <vector>
#include <queue>
using namespace std;

vector<char>opStak;
vector<string>ophStak;
queue<string>expQueue;
int opLev[128];
bool cnt1[128],cnt2[128];

void init(){
	opStak.clear();
	ophStak.clear();
	while(expQueue.size())expQueue.pop();
	opLev['+']=1,opLev['-']=1;
	opLev['*']=2;opLev['(']=0;
}

void pre(string &s1,string &s2){
	memset(cnt1,0,sizeof(cnt1));
	memset(cnt2,0,sizeof(cnt2));

	for (int i=0;i<s1.size();++i){
		cnt1[s1[i]]=1;
	}
	for (int i=0;i<s2.size();++i){
		cnt2[s2[i]]=1;
	}
}

string uni(string & s1,string &s2){
	pre(s1,s2);
	string ans;

	for (int i='A';i<='Z';++i){
		if(cnt1[i]||cnt2[i]){
			ans+=i;
		}
	}
	return ans;
}

string intersec(string &s1,string &s2){
	pre(s1,s2);
	string ans;

	for (int i='A';i<='Z';++i){
		if(cnt1[i]&&cnt2[i]){
			ans+=i;
		}
	}
	return ans;
}

string diff(string & s1,string &s2){
	pre(s1,s2);
	string ans;

	for (int i='A';i<='Z';++i){
		if(cnt1[i]&&!cnt2[i]){
			ans+=i;
		}
	}
	return ans;
}

string calVal(){
	while (expQueue.size()){
		string exp=expQueue.front();
		expQueue.pop();
		if(exp.size()&&isupper(exp[0])||exp.size()==0){
			ophStak.push_back(exp);
		}else{
			string s2=ophStak.back();
			ophStak.pop_back();
			string s1=ophStak.back();
			ophStak.pop_back();
			string ans;

			if(exp[0]=='+'){
				ans=uni(s1,s2);
			}else if(exp[0]=='-'){
				ans=diff(s1,s2);
			}else{
				ans=intersec(s1,s2);
			}
			ophStak.push_back(ans);
		}
	}
	return ophStak.back();
}

void readExpression(){
	char ch;
	while (ch=getchar(),ch!='\n'){
		if(ch=='{'){
			string oph;
			while(ch=getchar(),ch!='}'){
				oph+=ch;
			}
			expQueue.push(oph);
		}else if(ch==')'){
			while (opStak.size()&&opStak.back()!='('){
				string opt;
				opt+=opStak.back();
				expQueue.push(opt);
				opStak.pop_back();
			}
			opStak.pop_back();
		}else{
			if(ch=='('){
				opStak.push_back(ch);
				continue;
			}
			while(opStak.size()&&opLev[opStak.back()]>=opLev[ch]){
				string opt;
				opt+=opStak.back();
				expQueue.push(opt);
				opStak.pop_back();
			}
			opStak.push_back(ch);
		}
	}
	while (opStak.size()){
		string opt;
		opt+=opStak.back();
		expQueue.push(opt);
		opStak.pop_back();
	}
}

int main(){
	char ch;
	while (cin>>ch){
		cin.putback(ch);
		init();
		readExpression();
		printf("{%s}\n",calVal().c_str());
	}
	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值