map::emplace_hint()是C++ STL中的内置函数,它将键及其元素插入具有给定提示的映射容器中。它有效地将容器大小增加了一个,因为映射是存储具有元素值的键的容器。所提供的提示不会影响要输入的位置,它只会增加插入速度,因为它指向要开始搜索排序的位置。它以相同的顺序插入,随后是容器。它的函数类似于map::emplace()函数,但有时比用户准确提供位置的速度要快。如果Map容器中已经存在键,则它不会在元素中插入键,因为Map仅存储唯一键。
用法:
map_name.emplace_hint(position, key, element)
参数:该函数接受三个强制性参数键,如下所述:
- key -指定要插入Map容器的键。
- element -指定要插入Map容器的键元素。
- position -指定从中开始排序搜索操作的位置,从而使插入速度更快。
返回值:该函数不返回任何内容。
// C++ program to illustrate the
// map::emplace_hint() function
#include <bits/stdc++.h>
using namespace std;
int main()
{
// initialize container
map<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(), 3, 60); // slower
// prints the elements
cout << "\nThe map 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 map is: KEY ELEMENT 1 40 2 30 3 60
相关用法
- C++ div()用法及代码示例
- C++ log()用法及代码示例
- C++ fma()用法及代码示例
- C++ wcsncmp()用法及代码示例
- C++ wcsrtombs()用法及代码示例
- C++ wcstol()用法及代码示例
- C++ wcstod()用法及代码示例
- C++ iswxdigit()用法及代码示例
- C++ towlower()用法及代码示例
- C++ strtoumax()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 map emplace_hint() function in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。