C++ Unordered_multimap 库 - insert() 函数


描述

C++ 函数std::unordered_multimap::insert()通过在 unordered_multimap 中插入新元素来扩展容器。

宣言

以下是 std::unordered_multimap::insert() 函数形式 std::unordered_map() 标头的声明。

C++11

template <class InputIterator>
void insert(InputIterator first, InputIterator last);

参数

  • first - 将迭代器输入到范围中的初始位置。

  • 最后- 将迭代器输入到范围中的最终位置。

返回值

没有任何

时间复杂度

常数,即平均情况下的 O(1)。

线性,即最坏情况下的 O(n)。

例子

以下示例显示了 std::unordered_multimap::insert() 函数的用法。

#include <iostream>
#include <unordered_map>

using namespace std;

int main(void) {
   unordered_multimap<char, int> umm1 = {
            {'a', 1},
            {'b', 2},
            {'c', 3},
            {'d', 4},
         {'e', 5},
            };
   unordered_multimap<char, int> umm2;

   umm2.insert(umm1.begin(), umm1.end());

   cout << "Unordered multimap contains following elements" << endl;

   for (auto it = umm2.begin(); it != umm2.end(); ++it)
      cout << it->first << " = " << it->second << endl;

   return 0;
}

让我们编译并运行上面的程序,这将产生以下结果 -

Unordered multimap contains following elements
d = 4
c = 3
b = 2
a = 1
e = 5
无序_map.htm