C++ Set Library - crbegin Function



Description

It return const_reverse_iterator to reverse beginning.

Declaration

Following are the ways in which std::set::crbegin works in various C++ versions.

C++98

const_reverse_iterator crbegin() const noexcept;

C++11

const_reverse_iterator crbegin() const noexcept;

Return value

It return const_reverse_iterator to reverse beginning.

Exceptions

It never throws exceptions.

Time complexity

Time complexity is contstant.

Example

The following example shows the usage of std::set::crbegin.

#include <iostream>
#include <set>

int main () {
   std::set<int> myset = {50,40,30,20,10};

   std::cout << "myset backwards:";
   for (auto rit = myset.crbegin(); rit != myset.crend(); ++rit)
      std::cout << ' ' << *rit;

   std::cout << '\n';

   return 0;
}

The above program will compile and execute properly.

myset backwards: 50 40 30 20 10
set.htm
Advertisements