C++ Deque Library - operator= Function



Description

The C++ function std::deque::operator[] returns a reference to the element present at location n.

Declaration

Following is the declaration for std::deque::operator[] function form std::deque header.

C++98

reference operator[] (size_type n);
const_reference operator[] (size_type n) const;

Parameters

n − Position of an element in container.

Return value

Returns a reference to the element present at location n.

Exceptions

If n is not valid index then behavior is undefined.

Time complexity

Constant i.e. O(1)

Example

The following example shows the usage of std::deque::operator[] function.

#include <iostream>
#include <deque>

using namespace std;

int main(void) {

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

   cout << "Contents of deque are" << endl;

   for (int i = 0; i < d.size(); ++i)
      cout << d[i] << endl;

   return 0;
}

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

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