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



描述

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

声明

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

C++11

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

参数

  • first - 输入迭代器,指向范围的初始位置。

  • last - 输入迭代器,指向范围的结束位置。

返回值

时间复杂度

平均情况下为线性,即 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
unordered_map.htm
广告