C++ Unordered_map 库 - insert() 函数


描述

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

宣言

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

C++11

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

参数

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

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

返回值

没有任何

时间复杂度

线性,即平均情况下的 O(n)。

二次,即最坏情况下的 O(N * (size+ 1))。

例子

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

#include <iostream>
#include <unordered_map>

using namespace std;

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

   unordered_map<char, int> um2;

   um2.insert(um1.begin(), um1.end());

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

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

   return 0;
}

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

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