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



描述

C++ 函数std::map::insert() 通过在映射中插入新元素来扩展容器。此函数将容器大小增加一。

声明

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

C++98

pair<iterator,bool> insert (const value_type& val);

C++11

pair<iterator,bool> insert (const value_type& val);

参数

val - 要插入的值。

返回值

返回一对:bool指示是否发生了插入,并返回指向新插入元素的迭代器。

异常

此成员函数不抛出异常。

时间复杂度

对数,即 O(log n)

示例

以下示例演示了std::map::insert()函数的使用。

#include <iostream>
#include <map>

using namespace std;

int main(void) {
   map<char, int> m = {
            {'a', 1},
            {'b', 2},
            {'c', 3},
            };

   m.insert(pair<char, int>('d', 4));
   m.insert(pair<char, int>('e', 5));

   cout << "Map contains following elements" << endl;

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

   return 0;
}

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

Map contains following elements
a = 1
b = 2
c = 3
d = 4
e = 5
map.htm
广告