Problem Description
给你两个集合,要求{A} + {B}.
注:同一个集合中不会有两个相同的元素.
注:同一个集合中不会有两个相同的元素.
Input
每组输入数据分为三行,第一行有两个数字n,m(0<n,m<=10000),分别表示集合A和集合B的元素个数.后两行分别表示集合A和集合B.每个元素为不超出int范围的整数,每个元素之间有一个空格隔开.
Output
针对每组数据输出一行数据,表示合并后的集合,要求从小到大输出,每个元素之间有一个空格隔开.
Sample Input
1 2 1 2 3 1 2 1 1 2
Sample Output
1 2 3 1 2
set容器的练习。
//直接把给出的数字全部放到同一个set(集合)里,然后全部输出即可
#include <cstdio>
#include <set>
#include <iterator>
using namespace std;
set<int> s;
int main()
{
int n, m;
while (scanf("%d%d", &n, &m) != EOF)
{
int num;
s.clear();
for (int i = 1; i <= n; ++i){
scanf("%d", &num);
s.insert(num);
}
for (int i = 1; i <= m; ++i){
scanf("%d", &num);
s.insert(num);
}
set<int>::iterator it = s.begin();
int counts = 0;
int len = s.size();
for (it = s.begin(); it != s.end(); ++it)
{
printf("%d", *it);
counts++;
if (counts < len)
printf(" ");
}
printf("\n");
}
return 0;
}