- list::rbegin()是C++ STL中的內置函數,它返回一個反向迭代器,該迭代器指向列表的最後一個元素。
用法:
list_name.rbegin()
參數:該函數不接受任何參數。
返回值:它返回一個反向迭代器,該迭代器指向列表的最後一個元素。
以下示例程序旨在說明上述函數:
// C++ program to illustrate the // list::rbegin() function #include <bits/stdc++.h> using namespace std; int main() { list<int> 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 <bits/stdc++.h> using namespace std; int main() { list<int> 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++ vector rbegin()、rend()用法及代碼示例
- C++ multiset rbegin()、rend()用法及代碼示例
- C++ set::rbegin()、set::rend()用法及代碼示例
- C++ array::rbegin()、array::rend()用法及代碼示例
- C++ map rend()用法及代碼示例
- C++ map rbegin()用法及代碼示例
- C++ map rbegin()用法及代碼示例
- C++ deque rend()用法及代碼示例
- C++ deque rbegin()用法及代碼示例
- C++ multimap rend用法及代碼示例
- C++ multimap rbegin用法及代碼示例
- C++ list end()用法及代碼示例
- C++ list empty()用法及代碼示例
- C++ list max_size()用法及代碼示例
- C++ list erase()用法及代碼示例
注:本文由純淨天空篩選整理自Twinkl Bajaj大神的英文原創作品 list rbegin() and rend() function in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。