C++ 映射库 - rbegin() 函数



描述

C++ 函数std::map::rbegin()返回一个反向迭代器,该迭代器指向映射的最后一个元素。

反向迭代器以相反的顺序迭代,因此递增它们会向映射的开头移动。

声明

以下是来自 std::map 头文件的 std::map::rbegin() 函数的声明。

C++98

reverse_iterator rbegin();
const_reverse_iterator rbegin() const;

C++11

reverse_iterator rbegin() noexcept;
const_reverse_iterator rbegin() const noexcept;

参数

返回值

如果对象被限定为常量,则方法返回常量反向迭代器,否则返回非常量反向迭代器。

异常

此成员函数从不抛出异常。

时间复杂度

常数,即 O(1)

示例

以下示例显示了 std::map::rbegin() 函数的使用方法。

#include <iostream>
#include <map>

using namespace std;

int main(void) {
   /* Initializer_list constructor */
   map<char, int> m = {
            {'a', 1},
            {'b', 2},
            {'c', 3},
            {'d', 4},
            {'e', 5},
            };

   cout << "Map contains following elements in reverse order" << endl;

   for (auto it = m.rbegin(); it != m.rend(); ++it)
      cout << it->first << " = " << it->second << endl;

   return 0;
}

让我们编译并运行上述程序,这将产生以下结果:

Map contains following elements in reverse order
e = 5
d = 4
c = 3
b = 2
a = 1
map.htm
广告