C++ <deque> - end() Function
The C++ deque::end function returns the iterator pointing to the past-the-last element of the deque container. The past-the-last element of the deque is the theoretical element that follows the last element. It does not point to any element, and hence could not be dereferenced.
Syntax
iterator end(); const_iterator end() const;
iterator end() noexcept; const_iterator end() const noexcept;
Parameters
No parameter is required.
Return Value
An iterator to the past-the-last element of the sequence container. If the sequence object is constant qualified, the function returns a const_iterator, else returns an iterator.
Time Complexity
Constant i.e, Θ(1).
Example:
In the example below, the deque::end function returns the iterator pointing to the past-the-last element of the deque MyDeque.
#include <iostream> #include <deque> using namespace std; int main (){ deque<string> MyDeque{"Alpha","Coding","Skills"}; deque<string>::iterator it; it = MyDeque.end(); it--; cout<<*it<<" "; it--; cout<<*it<<" "; it--; cout<<*it<<" "; return 0; }
The output of the above code will be:
Skills Coding Alpha
Example:
Lets see another example where the deque called MyDeque contains integer values and deque::end function is used with deque::begin function to specify a range including all elements of the deque container.
#include <iostream> #include <deque> using namespace std; int main (){ deque<int> MyDeque{10, 20, 30, 40, 50}; deque<int>::iterator it; for(it = MyDeque.begin(); it != MyDeque.end(); ++it) cout<<*it<<" "; return 0; }
The output of the above code will be:
10 20 30 40 50
❮ C++ <deque> Library