- set :: rbegin()是C++ STL中的内置函数,它返回指向容器中最后一个元素的反向迭代器。
句法:
reverse_iterator set_name.rbegin()
参数:该函数不带任何参数。
返回值:该函数返回一个反向迭代器,指向容器中的最后一个元素。
演示set :: rbegin()方法的程序:
程序1:
// CPP program to demonstrate the // set::rbegin() function #include
using namespace std; int main() { int arr[] = { 14, 12, 15, 11, 10 }; // initializes the set from an array set s(arr, arr + 5); set ::reverse_iterator rit; // prints all elements in reverse order for (rit = s.rbegin(); rit != s.rend(); rit++) cout << *rit << " "; cout << "\nThe last element in set is " << *(s.rbegin()); return 0; } 输出:15 14 12 11 10 The last element in set is 15
- set :: rend()在C++ STL的内置函数中,该函数返回一个反向迭代器,该反向迭代器指向set容器中第一个元素之前的理论元素。
句法:
reverse_iterator set_name.rend()
参数:该函数不接受任何参数。
返回值:该函数返回一个反向迭代器,该迭代器指向set容器中第一个元素之前的理论元素。
下面的程序说明了该函数:
程序1:
// CPP program to demonstrate the // set::rend() function #include
using namespace std; int main() { int arr[] = { 4, 3, 5, 1, 2 }; // initializes the set from an array set s(arr, arr + 5); set ::reverse_iterator rit; // prints all elements in reverse order for (rit = s.rbegin(); rit != s.rend(); rit++) cout << *rit << " "; return 0; } 输出:5 4 3 2 1
想要从精选的最佳视频中学习并解决问题,请查看有关从基础到高级C++的C++基础课程以及有关语言和STL的C++ STL课程。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。