Syntax:
#include <deque> TYPE& operator[]( size_type index ); const TYPE& operator[]( size_type index ) const; deque operator=(const deque& c2); bool operator==(const deque& c1, const deque& c2); bool operator!=(const deque& c1, const deque& c2); bool operator<(const deque& c1, const deque& c2); bool operator>(const deque& c1, const deque& c2); bool operator<=(const deque& c1, const deque& c2); bool operator>=(const deque& c1, const deque& c2);
All of the C++ containers can be compared and assigned with the standard comparison operators: ==, !=, ⇐, >=, <, >, and =. Individual elements of a deque can be examined with the [] operator.
Performing a comparison or assigning one deque to another takes linear time.
The [] operator runs in constant time.
Two deques are equal if:
Comparisons among deques are done lexicographically.
For example, the following code uses the [] operator to access all of the elements of a vector:
vector<int> v( 5, 1 ); for( int i = 0; i < v.size(); i++ ) { cout << "Element " << i << " is " << v[i] << endl; }
Related Topics: at