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


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


unordered_multimap::emplace_hint()是C++ STL中的内置函数,该函数在unordered_multimap容器中插入新的{key:element}。它从参数中提供的位置开始搜索元素的插入点。该位置仅用作提示,它不决定要进行插入的位置。插入会根据容器的标准自动在该位置进行。它将容器的尺寸增加了一个。

用法:

unordered_multimap_name.emplace_hint(iterator position, key, element)

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


  • position:它指定迭代器,该迭代器指向从中开始搜索插入操作的位置。
  • key:它指定要插入到容器中的 key 。
  • element:它指定要在容器中插入的元素

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

以下示例程序旨在说明上述函数:

示例1:

// C++ program to illustrate 
// unordered_multimap::emplace_hint() 
#include <iostream> 
#include <string> 
#include <unordered_map> 
using namespace std; 
  
int main() 
{ 
  
    // declaration 
    unordered_multimap<int, int> sample; 
  
    // inserts key and element in a faster 
    // way as hint given is correct 
    auto it = sample.emplace_hint(sample.begin(), 1, 2); 
    it = sample.emplace_hint(it, 1, 2); 
    it = sample.emplace_hint(it, 1, 3); 
  
    // slower methods as wrong position 
    // has beeen given to start 
    sample.emplace_hint(sample.begin(), 4, 9); 
    sample.emplace_hint(sample.begin(), 60, 89); 
  
    std::cout << "Key and elements:\n"; 
    for (auto it = sample.begin(); it != sample.end(); it++) 
        cout << "{" << it->first << ":" << it->second << "}\n "; 
  
    std::cout << std::endl; 
    return 0; 
}
输出:
Key and elements:
{60:89}
 {4:9}
 {1:2}
 {1:2}
 {1:3}

示例2:

// C++ program to illustrate 
// unordered_multimap::emplace_hint() 
#include <iostream> 
#include <string> 
#include <unordered_map> 
using namespace std; 
  
int main() 
{ 
  
    // declaration 
    unordered_multimap<string, string> sample; 
  
    // inserts elements in a faster way as 
    // hint given is correct 
    auto it = sample.emplace_hint(sample.begin(), "gopal", "dave"); 
    it = sample.emplace_hint(it, "gopal", "dave"); 
    it = sample.emplace_hint(it, "Geeks", "Website"); 
  
    // slower methods as wrong position 
    // has beeen given to start 
    sample.emplace_hint(sample.begin(), "Geeks", "STL"); 
    sample.emplace_hint(sample.begin(), "Multimap", "functions"); 
  
    std::cout << "Key and elements:\n"; 
    for (auto it = sample.begin(); it != sample.end(); it++) 
        cout << "{" << it->first << ":" << it->second << "}\n "; 
  
    std::cout << std::endl; 
    return 0; 
}
输出:
Key and elements:
{Multimap:functions}
 {Geeks:Website}
 {Geeks:STL}
 {gopal:dave}
 {gopal:dave}


相关用法


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