命名空间
变体
操作

std::multimap<Key,T,Compare,Allocator>::merge

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

尝试使用 source 的比较对象从 source 中提取(“拼接”)每个元素并将其插入到 *this 中。

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

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

内容

[编辑] 参数

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

[编辑] 返回值

(无)

异常

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

[编辑] 复杂度

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

[编辑] 示例

#include <iostream>
#include <map>
#include <string>
 
int main()
{
    std::multimap<int, std::string> ma{{1, "apple"}, {5, "pear"}, {10, "banana"}};
    std::multimap<int, std::string> mb{{2, "zorro"}, {4, "batman"}, {5, "X"}, {8, "alpaca"}};
    std::multimap<int, std::string> u;
    u.merge(ma);
    std::cout << "ma.size(): " << ma.size() << '\n';
    u.merge(mb);
    std::cout << "mb.size(): " << mb.size() << '\n';
 
    for (auto const& kv : u)
        std::cout << kv.first << ", " << kv.second << '\n';
}

输出

ma.size(): 0
mb.size(): 0
1, apple
2, zorro
4, batman
5, pear
5, X
8, alpaca
10, banana

[编辑] 另请参阅

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