当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ multimap rend用法及代码示例


multimap::rend()是C++ STL中的内置函数,该函数返回一个反向迭代器,该反向迭代器指向多映射容器的第一个元素之前的理论元素。

用法

multimap_name.rend()

参数:该函数不带任何参数。



返回值该函数返回一个反向迭代器,指向多图容器的反向端,即反向迭代器,指向多图的第一个元素之前的位置。

不能取消引用由multimap::rend(返回的迭代器。

以下两个程序说明了该函数

// CPP program to illustrate 
// multimap::rend() 
#include <iostream> 
#include <map> 
using namespace std; 
  
int main() 
{ 
    multimap<char, int> sample; 
  
    // Insert pairs in the multimap 
    sample.insert(make_pair('a', 10)); 
    sample.insert(make_pair('b', 20)); 
    sample.insert(make_pair('c', 30)); 
    sample.insert(make_pair('c', 40)); 
  
    // Show content 
    for (auto it = sample.rbegin(); it != sample.rend(); it++) 
        cout << it->first << " = " << it->second << endl; 
}

输出

c = 40
c = 30
b = 20
a = 10

程序2:

// CPP program to illustrate 
// multimap::rend() 
  
#include <iostream> 
#include <map> 
using namespace std; 
  
int main() 
{ 
    multimap<char, int> sample; 
  
    // Insert pairs in the multimap 
    sample.insert(make_pair('a', 10)); 
    sample.insert(make_pair('b', 20)); 
    sample.insert(make_pair('c', 30)); 
    sample.insert(make_pair('c', 40)); 
  
    // Get the iterator pointing to 
    // the preceding position of 1st element of the multimap 
    auto it = sample.rend(); 
  
    // Get the iterator pointing to 
    // the 1st element of the multimap 
    it--; 
    cout << it->first << " = " << it->second; 
}

输出

a = 10



相关用法


注:本文由纯净天空筛选整理自tufan_gupta2000大神的英文原创作品 multimap rend in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。