C++ 算法 set_union()函数
C++算法 set_union() 函数用于找到两个排序范围 [first1, last1) 和 [first2, last2) 的并集,这个并集由存在于任意一个集合或者两个集合中的元素组成。
元素使用第一个版本使用操作符 < 进行比较,第二个版本使用给定的二元比较函数 comp 进行比较。
语法
default (1) template <class InputIterator1, class InputIterator2, class OutputIterator>
OutputIterator set_union (InputIterator1 first1, InputIterator1 last1,
InputIterator2 first2, InputIterator2 last2, OutputIterator result);
custom (2) template <class InputIterator1, class InputIterator2,
class OutputIterator, class Compare>
OutputIterator set_union (InputIterator1 first1, InputIterator1 last1,
InputIterator2 first2, InputIterator2 last2, OutputIterator result, Compare comp);
参数
first1 : 指向第一个已排序源序列中第一个元素的输入迭代器。
last1 : 指向第一个已排序源序列中最后一个元素之后的输入迭代器。
first2 : 指向第二个已排序源序列中第一个元素的输入迭代器。
last2 : 指向第二个已排序源序列中最后一个元素之后的输入迭代器。
comp : 用户定义的二元谓词函数,接受两个参数,并在这两个参数顺序正确时返回true,否则返回false。它遵循严格弱排序以对元素进行排序。
result : 指向目标范围中第一个元素的输出迭代器。
返回值
此函数返回指向构造范围结尾的迭代器。
复杂度
复杂度与[first1, last1)和[first2, last2)之间的距离成线性关系:执行最多2*(count1+count2)-1次比较。其中count1 = last1- first1,count2 = last2- first2。
数据竞争
范围[first1, last1)和[first2, last2)中的对象将被访问。
在结果和返回值之间的范围中的对象将被修改。
异常
如果元素比较、元素赋值或迭代器操作中出现异常,此函数将抛出异常。
注意:无效的参数会导致未定义的行为。
示例1
让我们看一个简单的示例来演示set_union()的用法:
#include <iostream>
#include <set>
#include <list>
#include <vector>
#include <algorithm>
#include <iterator>
using namespace std;
int main()
{
list<int> a = {1, 2, 3, 4};
multiset<int> b = {4, 5, 6, 2};
vector<int> result;
set_union(begin(a), end(a),
begin(b), end(b),
inserter(result, end(result)));
for_each(begin(result), end(result), [](int x) {
cout << x << endl;
});
return 0;
}
输出:
1
2
3
4
5
6
示例2
让我们看另一个简单的示例:
#include <iostream> // std::cout
#include <algorithm> // std::set_union, std::sort
#include <vector> // std::vector
using namespace std;
int main()
{
int first[] = { 5, 10, 15, 20, 25 };
int second[] = { 50, 40, 30, 20, 10 };
int n = sizeof(first) / sizeof(first[0]);
// Print first array
cout << "First array contains:";
for (int i = 0; i < n; i++)
cout << " " << first[i];
cout << "\n";
// Print second array
cout << "Second array contains:";
for (int i = 0; i < n; i++)
cout << " " << second[i];
cout << "\n\n";
vector<int> v(10);
vector<int>::iterator it, st;
sort(first, first + n);
sort(second, second + n);
// Using default function
it = set_union(first, first + n, second, second + n, v.begin());
cout << "The union has " << (it - v.begin()) << " elements:\n";
for (st = v.begin(); st != it; ++st)
cout << ' ' << *st;
cout << '\n';
return 0;
}
输出:
First array contains: 5 10 15 20 25
Second array contains: 50 40 30 20 10
The union has 8 elements:
5 10 15 20 25 30 40 50
示例3
让我们看另一个简单的示例,查找同时参加两门课程的所有学生的名单:
#include <iostream>
#include <algorithm>
#include <vector>
#include <string>
using namespace std;
// Driver code
int main()
{
string first[] = { "Nikita", "Divya", "Deep", "Kashish" };
string second[] = { "Aman", "Nikita", "Amita", "Deep" };
int n = sizeof(first) / sizeof(first[0]);
// Print students of first list
cout << "Students in first subject:";
for (int i = 0; i < n; i++)
cout << " " << first[i];
cout << "\n";
// Print students of second list
cout << "Students in second subject:";
for (int i = 0; i < n; i++)
cout << " " << second[i];
cout << "\n\n";
vector<string> v(10);
vector<string>::iterator it, st;
// Sorting both the list
sort(first, first + n);
sort(second, second + n);
// Using default operator<
it = set_union(first, first + n, second, second + n, v.begin());
cout << "Students attending both subjects are:\n";
for (st = v.begin(); st != it; ++st)
cout << ' ' << *st;
cout << '\n';
return 0;
}
输出:
Students in first subject: Nikita Divya Deep Kashish
Students in second subject: Aman Nikita Amita Deep
Students attending both subjects are:
Aman Amita Deep Divya Kashish Nikita
示例4
让我们看一个简单的示例:
#include <vector>
#include <iostream>
#include <algorithm>
#include <iterator>
using namespace std;
int main()
{
vector<char> v1 = {'A', 'B', 'C'};
vector<char> v2 = { 'C', 'D', 'E', 'F'};
vector<char> dest1;
set_union(v1.begin(), v1.end(),
v2.begin(), v2.end(),
back_inserter(dest1));
for (const auto &i : dest1) {
cout << i << ' ';
}
cout << '\n';
return 0;
}
输出:
A B C D E F