C++ Map Library - crend() Function



The C++ function std::map::crend() returns a constant reverse iterator which points to the theoretical element preceding the first element in the container i.e. reverse end of map.

Declaration

Following is the declaration for std::map::crend() function form std::map header.

C++11

const_reverse_iterator crend() const noexcept;

Parameters

None

Return value

Returns a constant reverse iterator.

Exceptions

This member function never throws exception.

Time complexity

Constant i.e. O(1)

Example

The following example shows the usage of std::map::crend() function.

#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.crbegin(); it != m.crend(); ++it)
      cout << it->first << " = " << it->second << endl;

   return 0;
}

Let us compile and run the above program, this will produce the following result −

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