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



描述

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

声明

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

C++11

void insert (initializer_list<value_type> il);

参数

il - 初始化列表。

返回值

异常

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

时间复杂度

对数,即 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},
         };

   m.insert({{'c', 4}, {'d', 5}});

   cout << "Multimap contains the following elements:" << endl;

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

   return 0;
}

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

Multimap contains the following elements:
a = 1
a = 2
b = 3
c = 4
d = 5
map.htm
广告