multiset :: crbegin()是C++ STL中的内置函数,它返回一个常量反向迭代器,该迭代器指向容器中的最后一个元素。迭代器不能用于修改多集容器中的元素。可以增加或减少迭代器以遍历集合。
句法:
constant_reverse_iterator multiset_name.crbegin()
参数:该函数不带任何参数。
返回值:该函数返回一个常量迭代器,该迭代器指向容器中的最后一个元素。
下面的程序说明了multiset :: crbegin()方法。
C++
// C++ program to demonstrate the
// multiset::crbegin() function
#include
using namespace std;
int main()
{
int arr[] = { 14, 10, 15, 11, 10 };
// initializes the set from an array
multiset s(arr, arr + 5);
cout << "The last element: " << *(s.crbegin()) << endl;
// prints all elements in set
for (auto it = s.crbegin(); it != s.crend(); it++)
cout << *it << " ";
return 0;
}
C++
// C++ program to demonstrate the
// multiset::crend() function
#include
using namespace std;
int main()
{
int arr[] = { 14, 12, 15, 11, 10, 10, 16, 16 };
// initializes the set from an array
multiset s(arr, arr + 8);
// prints all elements in set
for (auto it = s.crbegin(); it != s.crend(); it++)
cout << *it << " ";
return 0;
}
输出:
The last element: 15
15 14 11 10 10
multiset :: crend()是C++ STL中的内置函数,它返回一个常量反向迭代器,该迭代器指向容器中第一个元素之前的位置。迭代器不能用于修改多集容器中的元素。可以增加或减少迭代器以遍历集合。
句法:
constant_reverse_iterator multiset_name.crend()
参数:该函数不带任何参数。
返回值:该函数返回一个常量迭代器,该迭代器指向多集容器中第一个元素之前的位置。
下面的程序说明了multiset :: crend()方法。
C++
// C++ program to demonstrate the
// multiset::crend() function
#include
using namespace std;
int main()
{
int arr[] = { 14, 12, 15, 11, 10, 10, 16, 16 };
// initializes the set from an array
multiset s(arr, arr + 8);
// prints all elements in set
for (auto it = s.crbegin(); it != s.crend(); it++)
cout << *it << " ";
return 0;
}
输出:
16 16 15 14 12 11 10 10
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。