C++ 无序映射库 - insert() 函数



描述

C++ 函数std::unordered_map::insert() 通过插入来自初始化列表的新元素来扩展映射。此成员函数会增加容器的大小。

声明

以下是来自 <unordered_map> 头文件的 std::unordered_map::insert() 函数声明。

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
unordered_map.htm
广告