Container space management

With which member function containers manages space for its elements?

Are you talking about STL container classes?
Yes, exactly.
Well some STL containers have a resize() function which will either make the container larger or discard elements and force it to be smaller. Examples are vector and deque. However, these containers also automatically grow and shrink as items are added and/or removed.
Topic archived. No new replies allowed.