map :: emplace_hint()是C++ STL中的内置函数,它通过给定的提示将键及其元素插入到地图容器中。它有效地将容器大小增加了一个,因为映射是存储具有元素值的键的容器。所提供的提示不会影响要输入的位置,它只会增加插入速度,因为它指向要开始搜索订购的位置。它以相同的顺序插入,紧随其后的是容器。它的工作原理类似于map :: emplace()函数,但有时比用户准确提供位置的速度要快。如果地图容器中已经存在键,则它不会在元素中插入键,因为地图仅存储唯一键。
句法:
map_name.emplace_hint(position, key, element)
参数:该函数接受三个强制性参数键,如下所述:
- key –指定要插入地图容器的键。
- element –指定要插入地图容器的键的元素。
- position –指定从中开始订购搜索操作的位置,从而使插入速度更快。
返回值:将迭代器返回到新插入的元素。
如果由于元素已经存在而导致插入失败,则使用等效键将迭代器返回到已经存在的元素。
// C++ program to illustrate the
// map::emplace_hint() function
#include
using namespace std;
int main()
{
// initialize container
map 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++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。