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