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