rend()函数是C++ STL中的内置函数,它返回一个反向迭代器,该反向迭代器指向映射中第一个键值对之前的理论元素(被视为其反向端)。
用法:
map_name.rend()
参数:该函数不带任何参数。
返回值:该函数返回一个反向迭代器,该迭代器指向理论元素,即映射中的第一个元素之前。
注意:反向迭代器向后迭代,即当迭代器增加时,它们会朝容器的开头移动。
以下程序说明了该函数。
程序1:
// C++ program to illustrate map::rend() function
#include <iostream>
#include <map>
using namespace std;
int main()
{
map<char, int> mymap;
// Insert pairs in the multimap
mymap.insert(make_pair('a', 1));
mymap.insert(make_pair('b', 3));
mymap.insert(make_pair('c', 5));
// Show content
for (auto it = mymap.rbegin(); it != mymap.rend(); it++) {
cout << it->first
<< " = "
<< it->second
<< endl;
}
return 0;
}
输出:
c = 5 b = 3 a = 1
程序2:
// C++ program to illustrate map::rend() function
#include <iostream>
#include <map>
using namespace std;
int main()
{
map<char, int> mymap;
// Insert pairs in the multimap
mymap.insert(make_pair('a', 1));
mymap.insert(make_pair('b', 3));
mymap.insert(make_pair('c', 5));
// Get the iterator pointing to
// the preceding position of
// 1st element of the map
auto it = mymap.rend();
// Get the iterator pointing to
// the 1st element of the multimap
it--;
cout << it->first
<< " = "
<< it->second;
return 0;
}
输出:
a = 1
相关用法
- C++ deque rend()用法及代码示例
- C++ multiset rbegin()、rend()用法及代码示例
- C++ list rbegin()、rend()用法及代码示例
- C++ vector rbegin()、rend()用法及代码示例
- C++ set::rbegin()、set::rend()用法及代码示例
- C++ multimap rend用法及代码示例
- C++ array::rbegin()、array::rend()用法及代码示例
- C++ div()用法及代码示例
- C++ fma()用法及代码示例
- C++ log()用法及代码示例
- C++ map key_comp()用法及代码示例
注:本文由纯净天空筛选整理自Shivam.Pradhan大神的英文原创作品 map rend() function in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。