unordered_multimap :: emplace()是C++ STL中的内置函数,该函数在unordered_multimap容器中插入新的{key,element}。插入会根据容器的标准自动在该位置进行。它将容器的尺寸增加了一个。
句法:
unordered_multimap_name.emplace(key, element)
参数:该函数接受单个强制性参数键和要插入到容器中的元素。
返回值:返回一个迭代器,该迭代器指向新插入的元素。
下面的程序说明了上述函数:
程序1:
// C++ program to illustrate
// unordered_multimap::emplace()
#include
#include
#include
using namespace std;
int main()
{
// declaration
unordered_multimap sample;
// inserts key and elements
sample.emplace(1, 2);
sample.emplace(1, 2);
sample.emplace(1, 3);
sample.emplace(4, 9);
sample.emplace(60, 89);
cout << "Key and Elements: \n";
for (auto it = sample.begin(); it != sample.end(); it++)
cout << "{" << it->first << ":" << it->second << "}\n ";
return 0;
}
输出:
Key and Elements:
{60:89}
{4:9}
{1:3}
{1:2}
{1:2}
程式2:
// unordered_multimap::emplace
#include
#include
#include
using namespace std;
int main()
{
// declaration
unordered_multimap sample;
// inserts key and elements
sample.emplace("gopal", "dave");
sample.emplace("gopal", "dave");
sample.emplace("Geeks", "C++");
sample.emplace("multimap", "functions");
sample.emplace("multimap", "functions");
cout << "Key and Elements: \n";
for (auto it = sample.begin(); it != sample.end(); it++)
cout << "{" << it->first << ":" << it->second << "}\n ";
return 0;
}
输出:
Key and Elements:
{multimap:functions}
{multimap:functions}
{Geeks:C++}
{gopal:dave}
{gopal:dave}
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。