The cons of std::deque
are slower performance compared to std::vector
when accessing elements in random positions, and the fact that the memory blocks where data are stored have a predefined fixed size.
Are there alternative (even out of the STL) container classes that allow to:
- Set the block size for all blocks in the constructor, or
- Set different block sizes for each block.
- Prevent most indexed accesses from having to perform two pointer dereferences; e.g. once I access an element in a certain memory block, the following accesses in the same memory block should have a
std::vector
like performance.
Note: I am interested in the performance related to the access to the elements, not their insertion/removal.
The block size in
boost::container::deque
can be configured at the compile time. See the example in the official documentation: