resize

C++ Reference

resize
Syntax:
  #include <deque>
  void resize( size_type num, const TYPE& val = TYPE() );

The function resize() changes the size of the dequeue to size. If val is specified then any newly-created elements will be initialized to have a value of val.

This function runs in linear time.

Related topics: