- multiset::crbegin()是C++ STL中的内置函数,该函数返回指向容器中最后一个元素的常量反向迭代器。迭代器不能用于修改多集容器中的元素。可以增加或减少迭代器以遍历集合。
用法:
constant_reverse_iterator multiset_name.cregin()
参数:该函数不带任何参数。
返回值:该函数返回一个常量迭代器,指向容器中的最后一个元素。
以下示例程序旨在说明multiset::crbegin()方法。
// CPP program to demonstrate the // multiset::crbegin() function #include <bits/stdc++.h> using namespace std; int main() { int arr[] = { 14, 10, 15, 11, 10 }; // initializes the set from an array multiset<int> s(arr, arr + 5); cout << "The last element:" << *(s.crbegin()) << endl; // prints all elements in set for (auto it = s.crbegin(); it != s.crend(); it++) cout << *it << " "; return 0; }
输出:The last element:15 15 14 11 10 10
- multiset::crend()是C++ STL中的内置函数,它返回一个常数反向迭代器,该迭代器指向容器中第一个元素之前的位置。迭代器不能用于修改多集容器中的元素。可以增加或减少迭代器以遍历集合。
用法:
constant_reverse_iterator multiset_name.crend()
参数:该函数不带任何参数。
返回值:该函数返回一个常量迭代器,该迭代器指向多集容器中第一个元素之前的位置。
以下示例程序旨在说明multiset::crend()方法。
// CPP program to demonstrate the // multiset::crend() function #include <bits/stdc++.h> using namespace std; int main() { int arr[] = { 14, 12, 15, 11, 10, 10, 16, 16 }; // initializes the set from an array multiset<int> s(arr, arr + 8); // prints all elements in set for (auto it = s.crbegin(); it != s.crend(); it++) cout << *it << " "; return 0; }
输出:16 16 15 14 12 11 10 10
相关用法
- C++ set crbegin()、crend()用法及代码示例
- C++ map crbegin()、crend()用法及代码示例
- C++ list crbegin()、crend()用法及代码示例
- C++ multimap::crbegin()、multimap::crend()用法及代码示例
- C++ array::crbegin()、array::crend()用法及代码示例
- C++ multiset get_allocator()用法及代码示例
- C++ multiset begin()、end()用法及代码示例
- C++ multiset emplace_hint()用法及代码示例
- C++ multiset equal_range()用法及代码示例
- C++ multiset insert()用法及代码示例
- C++ multiset count()用法及代码示例
- C++ multiset key_comp()用法及代码示例
- C++ multiset empty()用法及代码示例
- C++ multiset clear()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 multiset crbegin() and crend() function in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。