[Home]
[Edit this page]
[Recent Changes]
[Special Pages]
[Help]
CppList
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
CppList
(C++) std::list
The std::list is a STL container class optimized for random-access insertion and removal. It is very similar to a std::vector, except that the latter is optimized for random-access reading/writing and insertions/deletions can only be done quickly at the front and end of the std::vector.Other container classes
- std::vector
- std::valarray
- boost::array
- std::slist (single-linked list)
Links
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
