hdu1412 STL(set)
程序员文章站
2022-03-22 19:17:33
...
#include<bits/stdc++.h>
using namespace std;
int n,m;
int a,b;
int main()
{
while(cin>>n>>m){
set<int> st;
for(int i=0;i<n;i++){
cin>>a;
st.insert(a);
}
for(int i=0;i<m;i++){
cin>>b;
st.insert(b);
}
int f=0;
for(set<int>::iterator it=st.begin();it!=st.end();it++){
if(f) cout<<" "<<*it;
else cout<<*it;
f++;
}
printf("\n");
}
return 0;
}
上一篇: premiere pro cs4下载 PHP4实际应用经验篇7
下一篇: 数组的“增 删 查 改”
推荐阅读
-
谈谈网页设计中的字体应用Font Set
-
JavaScript数据结构与算法之集合(Set)
-
Python set集合类型操作总结
-
python的set处理二维数组转一维数组的方法示例
-
mysql数据库中插入数据INSERT INTO SET的优势
-
Python中dict和set的用法讲解
-
模拟布光软件Set A Light 3D Studio中文破解版安装激活图文详细教程
-
vue数据双向绑定原理解析(get & set)
-
Spark异常:A master URL must be set in your configuration处理记录
-
PHP中set error handler函数用法小结