map :: emplace()是C++ STL中的内置函数,它将键及其元素插入到地图容器中。它可以有效地将容器尺寸增加一倍。如果多次放置同一个键,则映射仅存储第一个元素,因为映射是不存储多个相同值的键的容器。
句法:
map_name.emplace(key, element)
参数:该函数接受两个强制性参数,如下所述:
- key –指定要在多图容器中插入的键。
- element –指定要插入地图容器的键的元素。
返回值:该函数不返回任何内容。
// C++ program for the illustration of
// map::emplace() function
#include
using namespace std;
int main()
{
// initialize container
map mp;
// insert elements in random order
mp.emplace(2, 30);
mp.emplace(1, 40);
mp.emplace(2, 20);
mp.emplace(1, 50);
mp.emplace(4, 50);
// 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
4 50
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。