- array::crbegin()是C++ STL中的内置函数,该函数返回指向容器中最后一个元素的常量反向迭代器。
用法:
array_name.crbegin()
参数:该函数不接受任何参数。
返回值:该函数返回指向容器中最后一个元素的反向迭代器。
演示array::crbegin()方法的程序:
程序1:
// CPP program to illustrate // the array::crbegin() 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.crbegin()) << endl; // prints all the elements cout << "The array elements in reverse order are:\n"; for (auto it = arr.crbegin(); it != arr.crend(); it++) cout << *it << " "; return 0; }
输出:The last element is 7 The array elements in reverse order are: 7 4 2 5 1
- array::crend()是C++ STL中的内置函数,该函数返回一个常数反向迭代器,该迭代器指向数组容器中第一个元素之前的理论元素。
用法:
array_name.crend()
参数:该函数不接受任何参数。
返回值:该函数返回一个常数反向迭代器,该迭代器指向数组容器中第一个元素之前的理论元素。
演示array::crend()方法的程序:
程序1:
// CPP program to illustrate // the array::crend() 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.crbegin(); it != arr.crend(); it++) cout << *it << " "; return 0; }
输出:The array elements in reverse order are: 7 4 2 5 1
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 array::crbegin() and array::crend() in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。