unordered_set :: find()函数是C++ STL中的内置函数,用于在容器中搜索元素。它返回元素的迭代器,如果找到其他元素,则返回指向unordered_set :: end()的迭代器。
语法:
unordered_set_name.find(key)
参数:此函数接受必需的参数键,该键指定要搜索的元素。
返回值:返回找到元素的迭代器,否则返回指向unordered_set末尾的迭代器。
下面的程序说明了unordered_set :: find()函数:
程序1 :
// C++ program to illustrate the
// unordered_set::find() function
#include
#include
#include
using namespace std;
int main()
{
unordered_set sampleSet = { "geeks1", "for", "geeks2" };
// use of find() function
if (sampleSet.find("geeks1") != sampleSet.end()) {
cout << "element found." << endl;
}
else {
cout << "element not found" << endl;
}
return 0;
}
输出:
element found.
程序2 :
// CPP program to illustrate the
// unordered_set::find() function
#include
#include
#include
using namespace std;
int main()
{
unordered_set sampleSet = { "geeks1", "for", "geeks2" };
// use of find() function
if (sampleSet.find("geeksforgeeks") != sampleSet.end()) {
cout << "found" << endl;
}
else {
cout << "Not found" << endl;
}
return 0;
}
输出:
Not found
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。