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



描述

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

声明

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

C++98

iterator insert (const value_type& val);

C++11

iterator insert (const value_type& val);

参数

val - 要插入的值。

返回值

返回一个指向新插入元素的迭代器。

异常

如果抛出异常,则对容器没有影响。

时间复杂度

对数级,即 O(log n)

示例

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

#include <iostream>
#include <map>

using namespace std;

int main(void) {
   /* Multimap with duplicates */
   multimap<char, int> m {
            {'a', 1},
            {'a', 2},
            {'b', 3},
            {'c', 4},
         };

   auto pos = m.insert(pair<char, int>('d', 5));

   cout << "After inserting new element iterator points to" << endl;
   cout << pos->first << " = " << pos->second << endl;

   return 0;
}

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

After inserting new element iterator points to
d = 5
map.htm
广告