C++ Deque Library - cend() Function



Description

The C++ function std::deque::cend() returns a constant random access iterator which points to past-the-end element of the deque.

Iterator obtained by this member function can be used to iterate container but cannot be used to modify the content of object to which it is pointing even if object itself is not constant.

Declaration

Following is the declaration for std::deque::cend() function form std::deque header.

C++11

const_iterator cend() const noexcept;

Parameters

None

Return value

Returns a constant random access iterator which points to past-the-end element of the deque.

Exceptions

This member function never throws exception.

Time complexity

Constant i.e. O(1)

Example

The following example shows the usage of std::deque::cend() function.

#include <iostream>
#include <deque>

using namespace std;

int main(void) {

   deque<int> d = {1, 2, 3, 4, 5};

   cout << "Contents of deque in reverse order are" << endl;

   for (auto it = d.cend() - 1; it >= d.cbegin(); --it)
      cout << *it << endl;

   return 0;
}

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

Contents of deque in reverse order are
5
4
3
2
1
deque.htm
Advertisements