文章
82
粉丝
344
获赞
28
访问
698.2k
#include <bits/stdc++.h>
using namespace std;
int n;
//set 集合
//有序不重复的集合
//遍历方式:
/* set <int>::iterator iter=st.begin();
while(iter!=st.end()){
cout<<*iter<<" ";
iter++;
}*/
set <int> st;
int main(){
while(scanf("%d",&n)!=EOF){
st.clear();
while(n--){
int x;
cin>>x;
st.insert(x);
}
int y;
cin>>y;
set <int>::iterator iter=st.begin();
...
登录后发布评论
暂无评论,来抢沙发