- list :: rbegin()是C++ STL中的一个内置函数,它返回一个反向迭代器,该迭代器指向列表的最后一个元素。
句法:
list_name.rbegin()
参数:此函数不接受任何参数。
返回值:返回一个反向迭代器,该迭代器指向列表的最后一个元素。
下面的程序说明了上述函数:
// C++ program to illustrate the // list::rbegin() function #include
using namespace std; int main() { list lis = { 10, 20, 30, 40, 50 }; cout << "The list in reverse order: "; for (auto it = lis.rbegin(); it != lis.rend(); ++it) cout << *it << " "; return 0; } 输出:The list in reverse order: 50 40 30 20 10
- list :: rend()是C++ STL中的内置函数,它返回一个反向迭代器,该迭代器指向列表开头之前的位置。
句法:
list_name.rend()
参数:该函数不接受任何参数。
返回值:返回一个反向迭代器,该迭代器指向列表开头之前的位置。
下面的程序说明了上述函数:
// C++ program to illustrate the // list::rbegin() function #include
using namespace std; int main() { list lis = { 10, 20, 30, 40, 50 }; cout << "The list in reverse order: "; for (auto it = lis.rbegin(); it != lis.rend(); ++it) cout << *it << " "; return 0; } 输出:The list in reverse order: 50 40 30 20 10
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。