Is there a std container in c++ that acts like a hybrid between a vector and a linked list. What I mean is a data structure that overcomes the frequent reallocation overhead of std::vector and potential excess memory allocation, instead when the structure runs out of space it adds a pointer to the next allocated fragment, and only when the number of fragments reaches a certain value, the entire structure is de-fragmented into a continuous new chunk and number of fragments is set back to 0.
|
feedback
|
|
Depending on your practical requirements, it might be close enough. | |||
feedback
|
|
As already said, | |||
|
feedback
|
std::deque? Does it fit your requirements? – Asha Nov 29 '11 at 13:08std::dequeworks that way, but I'm not sure though. – Constantinius Nov 29 '11 at 13:08std::dequewas just a kind of ringbuffer and thus similar to astd::vectorin its memory allocation behaviour. – Christian Rau Nov 29 '11 at 13:55