What’s the difference between deque and list STL containers?

Let me list down the differences:

  • Deque manages its elements with a
    dynamic array, provides random
    access
    , and has almost the same
    interface as a vector.
  • List manages its elements as a
    doubly linked list and does not
    provide random access.

  • Deque provides Fast insertions and deletions at
    both the end and the beginning. Inserting and deleting elements in
    the middle is relatively slow because
    all elements up to either of both
    ends may be moved to make room or to
    fill a gap.
  • In List, inserting and removing elements is fast at each position,
    including both ends.

  • Deque: Any insertion or deletion of elements
    other than at the beginning or end
    invalidates all pointers, references,
    and iterators that refer to elements
    of the deque.
  • List: Inserting and deleting elements does
    not invalidate pointers, references,
    and iterators to other elements.

Complexity

             Insert/erase at the beginning       in middle        at the end

Deque:       Amortized constant                  Linear           Amortized constant
List:        Constant                            Constant         Constant

Leave a Comment

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)