当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ multimap::emplace_hint()用法及代码示例


multimap::emplace_hint()是C++ STL中的内置函数,该函数将键及其元素插入具有给定提示的multimap容器中。它可以有效地将容器大小增加1,因为multimap是存储具有相同值的多个键的容器。所提供的提示不会影响要输入的位置,它只会增加插入速度,因为它指向要开始搜索排序的位置。它以相同的顺序插入,随后是容器。它的函数类似于multimap::emplace()函数,但有时比用户准确提供位置的速度要快。

用法:

multimap_name.emplace_hint(position, key, element)

参数:该函数接受三个强制性参数键,如下所述:


  • key -指定要在多图容器中插入的键。
  • element -指定要在多图容器中插入的键的元素。
  • position -指定从中开始排序搜索操作的位置,从而使插入速度更快。

返回值:该函数不返回任何内容。

// C++ program to illustrate the 
// multimap::emplace_hint() function 
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
  
    // initialize container 
    multimap<int, int> mp; 
  
    // insert elements in random order 
    mp.emplace_hint(mp.begin(), 2, 30); // faster 
    mp.emplace_hint(mp.begin(), 1, 40); // faster 
    mp.emplace_hint(mp.begin(), 2, 60); // slower 
    mp.emplace_hint(mp.begin(), 2, 20); // slower 
    mp.emplace_hint(mp.begin(), 1, 50); // faster 
    mp.emplace_hint(mp.begin(), 1, 50); // faster 
  
    // prints the elements 
    cout << "\nThe multimap is:\n"; 
    cout << "KEY\tELEMENT\n"; 
    for (auto itr = mp.begin(); itr != mp.end(); itr++) 
        cout << itr->first << "\t" << itr->second << endl; 
  
    return 0; 
}
输出:
The multimap is:
KEY    ELEMENT
1    50
1    50
1    40
2    20
2    60
2    30


相关用法


注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 multimap::emplace_hint() in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。