P
Pat
I want to store objects into a C++ container (e.g. vector<object>,
deque<object>). Could someone help me the following questions.
1. Does there exist any size limit in the C++ container. For example, how
many objects can be stored in the vector<object>?
2. I want to store many thousand objects into a container, and use "find",
"sort" very often. Which standard container should be used in term of
efficiency and size limit?
Thanks.
Pat
deque<object>). Could someone help me the following questions.
1. Does there exist any size limit in the C++ container. For example, how
many objects can be stored in the vector<object>?
2. I want to store many thousand objects into a container, and use "find",
"sort" very often. Which standard container should be used in term of
efficiency and size limit?
Thanks.
Pat