handling collections

I'm a c++ newbie and would like to know what is the best way to handle collections: vector template or arrays ? thanx in advance
With a vector you could add elements so it is better but it isn't the only container, if you need to add or remove
elements frequently a list should be better
http://www.cplusplus.com/reference/stl/list/
Last edited on
Topic archived. No new replies allowed.