Exploring Double-Ended Queues (Deque) in C++ Standard Template Library (STL)

Nitish Singh
3 min readJun 15, 2023

Picture this: we’re working on a coding project and we need to insert or delete elements from both ends of your data structure. We could use a stack, but that only allows you to manipulate one end, or we could use a queue, but that only allows for manipulation at one end as well. What’s a programmer to do?

The double-ended queue, sequence container, that combines the features of both stacks and queues. With the C++ STL deque class, we can easily insert and delete elements from both ends, making it a powerful tool for any programmer. Plus, it’s versatile enough to handle a wide range of data types.

In this article, we’ll explore the functionality of the deque, including its advantages and common methods.

What is a Deque?

A deque is a sequence container that supports dynamic expansion and contraction on both ends. It is similar to a vector but offers better performance for inserting and deleting elements. Unlike vectors, deques do not guarantee contiguous storage allocation. This non-contiguous storage allows for efficient insertion and deletion at both ends of the deque. Deques are a special case of queues, where operations can be performed on both the front and back.

Benefits of Using Deque:

  1. Efficient Insertion and Deletion:
    Deques provide constant-time insertion and removal operations at both ends, making them suitable for scenarios where elements need to be added or removed dynamically.
  2. Dynamic Size Adjustment:
    Deques can dynamically expand or shrink in size to accommodate the changing number of elements. This flexibility allows efficient memory usage and avoids unnecessary reallocation.
  3. Random Access:
    Deques support random access to elements using iterators, allowing direct access to any element within the deque in constant time.

Common Operations and Methods:

A. Insertion and Removal:

  • push_back(): Adds an element to the back of the deque.
  • push_front(): Adds an element to the front of the deque.
  • pop_front(): Removes the element from the front of the deque.
  • pop_back(): Removes the element from the back of the deque.

B. Accessing Elements:

  • front(): Returns a reference to the first element of the deque.
  • back(): Returns a reference to the last element of the deque.

C. Size and Capacity:

  • empty(): Checks if the deque is empty.
  • size(): Returns the number of elements in the deque.
  • max_size(): Returns the maximum number of elements the deque can hold.
  • resize(): Changes the size of the deque.

D. Iterator Operations:

  • begin(), end(): Returns iterators pointing to the beginning and end of the deque.
  • rbegin(), rend(): Returns reverse iterators for iterating in reverse order.
  • cbegin(), cend(): Returns constant iterators for traversing the deque without modification.

E. Other Operations:

  • assign(): Assigns values to the deque from the same or different deque.
  • erase(): Removes elements from the deque at a specified position or range.
  • clear(): Removes all elements from the deque, making its size zero.
  • swap(): Swaps the contents of one deque with another deque of the same type and size.
  • at(): Accesses the element at a specified position with bounds checking.
  • emplace_front(), emplace_back(): Constructs and inserts elements at the front or back of the deque in-place.

Time and Space Complexity:

  • Accessing elements: O(1)
  • Insertion or removal of elements: O(n)
  • Insertion or removal of elements at the start or end: O(1)

The space complexity of deques is O(1), meaning it does not require additional memory proportional to the number of elements stored.

Conclusion:

In conclusion, the deque container in the C++ Standard Template Library is a powerful and versatile data structure that combines the features of both stacks and queues. Deques allow for efficient insertion and deletion at both ends and dynamic size adjustment, making them suitable for scenarios where elements need to be added or removed dynamically. They also support random access to elements using iterators and offer a wide range of methods and operations for manipulating and accessing elements. With constant-time insertion and deletion at both ends, deques are a valuable tool for any programmer looking to optimize their code and improve their programming skills.

--

--

Nitish Singh

Passionate about empowering devs with practical tips, using modern C++ as the tool, and up-to-date knowledge. Join me on Medium for engaging articles.