C++ STL中的unordered_multiset运算符=
‘=’ 是C++ STL中的一个运算符,它将一个 unordered_multiset 复制(或移动)到另一个 unordered_multiset 中,而 unordered_multiset::operator= 则是相应的运算符函数。该函数有三个版本:
第一个版本将一个 unordered_multiset 的引用作为参数,并将其复制到另一个 unordered_multiset 中。
语法:
ums1.operator=(unordered_multiset &ums2)
- 参数: 第一个版本以 unordered_multiset 的引用作为参数。
-
第二个版本执行移动赋值,即将一个 unordered_multiset 的内容移动到另一个 unordered_multiset 中。
语法:
ums1.operator=(unordered_multiset &&ums2)
-
参数: 第二个版本以一个r-value引用的 unordered_multiset 作为参数
-
第三个版本将一个初始化列表的内容分配给一个 unordered_multiset 。
语法:
ums1.operator=(initializer list)
- 参数: 第三个版本以一个初始化列表作为参数。
返回值: 所有版本都返回该指针的值(*this)。以下程序说明unordered_multiset::operator=。
// C++ code to illustrate the method
// unordered_multiset::operator=()
#include <iostream>
#include <unordered_set>
using namespace std;
// merge function
template <class T>
T merge(T a, T b)
{
T t(a);
t.insert(b.begin(), b.end());
return t;
}
int main()
{
unordered_multiset<int> sample1, sample2, sample3;
// List initialization
sample1 = { 1, 2, 2, 3, 3, 4, 4, 4, 3, 4 };
sample2 = { 1, 2, 3, 1, 4 };
// Merge both unordered_multisets and
// move the result to sample1
sample3 = merge(sample1, sample2);
// copy assignment
sample1 = sample3;
// Print the unordered_set list
for (auto it = sample1.begin(); it != sample1.end(); ++it)
cout << *it << " ";
cout << endl;
for (auto it = sample2.begin(); it != sample2.end(); ++it)
cout << *it << " ";
cout << endl;
for (auto it = sample3.begin(); it != sample3.end(); ++it)
cout << *it << " ";
cout << endl;
}
输出:
1 1 1 2 2 2 3 3 3 3 4 4 4 4 4
4 3 2 1 1
1 1 1 2 2 2 3 3 3 3 4 4 4 4 4
时间复杂度-O(N)