unordered_set :: cend()方法是C++ STL中的内置函数,用于返回const_iterator,该指针指向unordered_set容器或其中一个存储桶中的end-the-end元素。此函数不直接指向容器中的任何元素。它仅用于表示容器的末端或范围的开放末端,如[cbegin,cend)。
注意:const_iterator只能用于访问元素,它不能修改容器中存在的元素。
语法:
unordered_set_name.cend(n);
参数:该函数接受单个参数n 。这是一个可选参数,用于指定存储桶编号。如果未传递此参数,则cend()方法将返回一个const_iterator,该指针指向容器的最后一个元素之后的位置;如果传递此参数,则cend()方法将返回一个const_iterator指向该容器之后的位置。 unordered_set容器中特定存储桶中的最后一个元素。
返回值:该函数返回一个const_iterator,它指向容器中最后一个元素之后或容器中指定存储区之后的位置。
下面的程序说明了unordered_set :: cend()函数:
程序1 :
// C++ program to illustrate the
// unordered_set::cend() 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);
// Here, the cend() method is used to
// iterate in the range of elements
// present in the unordered_set container
cout << "Elements present in sampleSet are: \n";
for (auto itr = sampleSet.cbegin(); itr != sampleSet.cend();
itr++) {
cout << *itr << endl;
}
return 0;
}
输出:
Elements present in sampleSet are:
25
5
10
15
20
程序2 :
// C++ program to illustrate the
// unordered_set::cend() 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");
// Here, the cend() method is used to
// iterate in the range of elements
// present in the unordered_set container
cout << "Elements present in sampleSet are: \n";
for (auto itr = sampleSet.cbegin(); itr != sampleSet.cend();
itr++) {
cout << *itr << endl;
}
return 0;
}
输出:
Elements present in sampleSet are:
Welcome
To
GeeksforGeeks
For Geeks
Computer Science Portal
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。