- vector::rbegin()是C++ STL中的內置函數,該函數返回指向容器中最後一個元素的反向迭代器。
用法:
vector_name.rbegin()
參數:該函數不接受任何參數。
返回值:該函數返回指向容器中最後一個元素的反向迭代器。
演示vector::rbegin()方法的程序:
程序1:
// CPP program to illustrate // the vector::rbegin() function #include <bits/stdc++.h> using namespace std; int main() { vector<int> v; v.push_back(11); v.push_back(12); v.push_back(13); v.push_back(14); v.push_back(15); // prints all the elements cout << "The vector elements in reverse order are:\n"; for (auto it = v.rbegin(); it != v.rend(); it++) cout << *it << " "; return 0; }
輸出:The vector elements in reverse order are: 15 14 13 12 11
- vector::rend()是C++ STL中的內置函數,該函數返回一個反向迭代器,指向數組容器中第一個元素之前的理論元素。
用法:
vector_name.rend()
參數:該函數不帶任何參數。
返回值:該函數返回一個反向迭代器,該迭代器指向數組容器中第一個元素之前的理論元素。
演示vector::rend()方法的程序:
程序1:
// CPP program to illustrate // the vector::rend() function #include <bits/stdc++.h> using namespace std; int main() { vector<int> v; v.push_back(11); v.push_back(12); v.push_back(13); v.push_back(14); v.push_back(15); cout << "The last element is:" << *v.rbegin(); // prints all the elements cout << "\nThe vector elements in reverse order are:\n"; for (auto it = v.rbegin(); it != v.rend(); it++) cout << *it << " "; return 0; }
輸出:The last element is:15 The vector elements in reverse order are: 15 14 13 12 11
相關用法
- C++ multiset rbegin()、rend()用法及代碼示例
- C++ list 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++ vector shrink_to_fit()用法及代碼示例
- C++ vector max_size()用法及代碼示例
- C++ vector emplace()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 vector rbegin() and rend() function in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。