unordered_set :: begin()方法是C++ STL中的内置函数,用于返回指向unordered_set容器中第一个元素的迭代器。 unordered_set的所有迭代器只能用于访问元素,不允许迭代器修改unordered_set容器中存在的元素。
注意:此迭代器可以指向unordered_set容器中任何指定存储区的第一个元素或第一个元素。
语法:
unordered_set_name.begin(n)
参数:这是一个可选参数,用于指定存储区编号。如果未传递此参数,则begin()方法将返回指向容器第一个元素的迭代器,如果传递此参数,则begin()方法将返回指向特定存储桶中第一个元素的迭代器。 unordered_set容器。
返回值:该函数返回一个迭代器,该迭代器指向容器中的第一个元素或容器中的指定存储桶。
下面的程序说明了unordered_set :: begin()函数:
// CPP program to illustrate the
// unordered_set::begin() function
#include
#include
using namespace std;
int main()
{
unordered_set sampleSet;
// Inserting elements in the std
sampleSet.insert(5);
sampleSet.insert(10);
sampleSet.insert(15);
sampleSet.insert(20);
sampleSet.insert(25);
auto itr1 = sampleSet.begin();
auto itr2 = sampleSet.begin(4);
cout << "First element in the container is: " << *itr1;
cout << "\nFirst element in the bucket 4 is: " << *itr2;
return 0;
}
输出:
First element in the container is: 25
First element in the bucket 4 is: 15
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。