arraylist

i am trying to code a telecomm bill project in which everything is done online.i want to create an ARRAYLIST for objects.please help me out how can i do.
i hav thought of to do it with link list.but i am stuck up and dnt knw hw to do .
If you want a dynamic array, use std::vector:
http://www.cplusplus.com/reference/stl/vector/

If you want a linked list, use std::list:
http://www.cplusplus.com/reference/stl/list/
Topic archived. No new replies allowed.