C++ Unordered_map 库 - insert() 函数


描述

C++ 函数std::unordered_map::insert()通过从初始值设定项列表插入新元素来扩展 map。此成员函数会增加容器大小。

宣言

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

C++11

void insert(initializer_list<value_type> il);

参数

il - 初始化列表。

返回值

没有任何

时间复杂度

线性,即平均情况下的 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> um = {
            {'b', 2},
            {'c', 3},
            {'d', 4},
            };

   um.insert({{'a', 1}, {'e', 5}});

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

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

   return 0;
}

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

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