命名空间
变体
操作

std::unordered_multiset<Key,Hash,KeyEqual,Allocator>::merge

来自 cppreference.com
 
 
 
 
template< class H2, class P2 >
void merge( std::unordered_set<Key, H2, P2, Allocator>& source );
(1) (自 C++17 起)
template< class H2, class P2 >
void merge( std::unordered_set<Key, H2, P2, Allocator>&& source );
(2) (自 C++17 起)
template< class H2, class P2 >
void merge( std::unordered_multiset<Key, H2, P2, Allocator>& source );
(3) (自 C++17 起)
template< class H2, class P2 >
void merge( std::unordered_multiset<Key, H2, P2, Allocator>&& source );
(4) (自 C++17 起)

尝试提取(“拼接”)source 中的每个元素并将其插入到 *this 中,使用 *this 的哈希函数和键相等谓词。

不会复制或移动任何元素,只会重新指向容器节点的内部指针。所有指向转移元素的指针和引用仍然有效,但现在指向 *this,而不是指向 source。指向转移元素的迭代器和所有指向 *this 的迭代器都将失效。

如果 get_allocator() != source.get_allocator(),则行为未定义。

内容

[编辑] 参数

source - 要从中转移节点的兼容容器

[编辑] 返回值

(无)


[编辑] 复杂度

平均情况为 O(N),最坏情况为 O(N * size() + N),其中 N 为 source.size()

[编辑] 示例

#include <iostream>
#include <unordered_set>
 
// print out a container
template<class Os, class K>
Os& operator<<(Os& os, const std::unordered_multiset<K>& v)
{
    os << '[' << v.size() << "] {";
    bool o{};
    for (const auto& e : v)
        os << (o ? ", " : (o = 1, " ")) << e;
    return os << " }\n";
}
 
int main()
{
    std::unordered_multiset<char>
        p{'C', 'B', 'B', 'A'}, 
        q{'E', 'D', 'E', 'C'};
 
    std::cout << "p: " << p << "q: " << q;
 
    p.merge(q);
 
    std::cout << "p.merge(q);\n" << "p: " << p << "q: " << q;
}

可能的输出

p: [4] { A, B, B, C }
q: [4] { C, D, E, E }
p.merge(q);
p: [8] { E, E, D, A, B, B, C, C }
q: [0] { }

[编辑] 参见

(C++17)
从容器中提取节点
(公共成员函数) [编辑]
插入元素 或节点(自 C++17 起)
(公共成员函数) [编辑]