您当前的位置: 首页 > 

minato_yukina

暂无认证

  • 0浏览

    0关注

    138博文

    0收益

  • 0浏览

    0点赞

    0打赏

    0留言

私信
关注
热门博文

紫书例题5-5 集合栈计算机

minato_yukina 发布时间:2020-12-01 15:49:54 ,浏览量:0

uva 12096 超级难的一题..

1.set () 表示空集

2.set_union 求并集 set_intersation 求交集 用法

set_union(x1.begin(),x1.end(),x2.begin(),x2.end(),inserter(x,x.begin())); 

前4个参数是两个集合的起点终点. 然后最后一个的插入迭代器第一个填同类型的的东西(新生成的并集)和那个起点.begin.

交集同理

set_intersection(x1.begin(),x1.end(),x2.begin(),x2.end(),inserter(x,x.begin()));

3.然后是插入加入元素.

x=x2;x.insert(ID(x1));

注意x.insert必须是插入有序的的组合中.

4.完整代码

#include
using namespace std;
typedef set Set;
vector Setcache; map IDcache;
int ID(Set x){
	if( IDcache.count(x)) return IDcache[x];
	Setcache.push_back(x);
	return IDcache[x]=Setcache.size()-1;
}
int main(){ int t,n,i;cin>>t;
while(t--){ stack s;
	cin>>n;
for(i=0;i>op;
    if(op[0]=='P') s.push(ID(Set()));
	else if(op[0]=='D') s.push(s.top());
	else {
		Set x1=Setcache[s.top()]; s.pop();
		Set x2=Setcache[s.top()]; s.pop();
		Set x;
	if(op[0]=='U') { set_union(x1.begin(),x1.end(),x2.begin(),x2.end(),inserter(x,x.begin())); 
	}
	else if(op[0]=='I') { set_intersection(x1.begin(),x1.end(),x2.begin(),x2.end(),inserter(x,x.begin()));
	}
	else { x=x2;x.insert(ID(x1));
	} s.push(ID(x)); 
	} cout            
关注
打赏
1663570241
查看更多评论
0.0408s