unordered_set :: emplace()函数是C++ STL中的内置函数,用于在unordered_set容器中插入元素。仅当元素尚未出现在容器中时,才插入该元素。这种插入也有效地增加了容器的尺寸1。
语法:
unordered_set_name.emplace(element)
参数:此函数接受单个参数元素,该元素将插入unordered_set容器中。
返回值:该函数在成功插入时返回一对。该对由指向新插入元素的迭代器和布尔值True组成。如果容器中已经存在要插入的元素,则它将返回一个带有迭代器的对,该迭代器指向已经存在的元素和一个布尔值false 。
下面的程序说明了unordered_set :: emplace()函数:
程序1 :
// C++ program to illustrate the
// unordered_set::emplace() function
#include
#include
using namespace std;
int main()
{
unordered_set sampleSet;
// Inserting elements
sampleSet.emplace(5);
sampleSet.emplace(10);
sampleSet.emplace(15);
sampleSet.emplace(20);
sampleSet.emplace(25);
// displaying all elements of sampleSet
cout << "sampleSet contains: ";
for (auto itr = sampleSet.begin(); itr != sampleSet.end(); itr++) {
cout << *itr << " ";
}
return 0;
}
输出:
sampleSet contains: 25 5 10 15 20
程序2 :
// C++ program to illustrate the
// unordered_set::emplate() function
#include
#include
using namespace std;
int main()
{
unordered_set sampleSet;
// Inserting elements using
// emplace() function
sampleSet.emplace("Welcome");
sampleSet.emplace("To");
sampleSet.emplace("GeeksforGeeks");
sampleSet.emplace("Computer Science Portal");
sampleSet.emplace("For Geeks");
// displaying all elements of sampleSet
cout << "sampleSet contains: ";
for (auto itr = sampleSet.begin(); itr != sampleSet.end(); itr++) {
cout << *itr << " ";
}
return 0;
}
输出:
sampleSet contains: Welcome To GeeksforGeeks For Geeks Computer Science Portal
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。