命名空间
变体
操作

std::set<Key,Compare,Allocator>::merge

来自 cppreference.com
< cpp‎ | container‎ | set
 
 
 
 
template< class C2 >
void merge( std::set<Key, C2, Allocator>& source );
(1) (自 C++17)
template< class C2 >
void merge( std::set<Key, C2, Allocator>&& source );
(2) (自 C++17)
template< class C2 >
void merge( std::multiset<Key, C2, Allocator>& source );
(3) (自 C++17)
template< class C2 >
void merge( std::multiset<Key, C2, Allocator>&& source );
(4) (自 C++17)

尝试使用 source 中的比较对象从 source 中提取(“拼接”)每个元素并将其插入到 *this 中。如果 *this 中存在与 source 中的元素键等效的键的元素,则不会从 source 中提取该元素。没有元素被复制或移动,只有容器节点的内部指针被重新指向。对已转移元素的所有指针和引用保持有效,但现在引用 *this,而不是 source

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

内容

[编辑] 参数

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

[编辑] 返回值

(无)

异常

除非比较抛出异常,否则不抛出异常。

[编辑] 复杂度

N * log(size() + N)), 其中 N 是 source.size()

[编辑] 示例

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

[编辑] 参见

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