Go back to Richel Bilderbeek's homepage.
Go back to Richel Bilderbeek's C++ page.
STL container for storing instances of any data type.
Advantages of a std::vector over an array are:
- std::vector allocates memory from the free space when increasing in size
- std::vector is not a pointer in disguise [3]
- std::vector can increase/decrease in size run-time
- std::vector can do range checking (using at())
The erase-remove idiom
Calling std::remove to remove a certain value from a std::vector does not change
a std::vector its size. std::remove does return an
iterator to where the removed elements are put. This iterator can be used
to call std::vector its 'erase' member function. These two operations are called the erase-remove idiom.
Use the erase-remove idiom the really remove a value from a std::vector.
Note that among these are also more general container code snippets.
- AllAboutEqual, check if all doubles in a std::vector are about equal
- Append two std::vectors, Append
- Append, append two std::vectors
- Check if all doubles in a std::vector are about equal, AllAboutEqual
- CreateVector, create a std::vector from three values
- Convert Matrix<X> to Matrix<Y>, ConvertMatrix
- Convert std::vector<std::vector<X> > to std::vector<std::vector<Y> >, ConvertMatrix
- Convert two 2D std::vector<X> to 2D std::vector<Y>, ConvertMatrix
- ConvertMatrix, convert Matrix<X> to Matrix<Y>
- ConvertMatrix, convert std::vector<std::vector<X> > to std::vector<std::vector<Y> >
- ConvertMatrix, convert two 2D std::vector<X> to 2D std::vector<Y>
- CoutVector, std::cout on a std::vector
- GetIncVector, get a std::vector of incremented values (for example with values 0,1,2,3,etc)
- GetLongestString, find the length of the std::string with the most characters in a container
- GetShortestString, find the length of the std::string with the least characters in a container
- HugeVector, class that can contain more elements than std::vector
- LoopReader, reading a container looped
- RandomShuffle, shuffle a std::vector to a random order
- Read and write a std::vector from/to a std::stream
- Read and write two std::vectors from/to a std::stream
- Reading a container looped, LoopReader
- Save a container to file, SaveContainer
- SaveContainer, save a container to file
- SumStringLength, sum the lengths of std::strings irn a container
- Shuffle a std::vector to a random order, RandomShuffle
- Sort a std::vector, SortVector
- SortVector, sort a std::vector
- Write and read a std::vector to/from a std::stream
- Write and read two std::vectors to/from a std::stream
- std::cout on a std::vector, CoutVector
External links
- Herb Sutter, Andrei Alexandrescu. C++ coding standards: 101 rules, guidelines, and best practices. 2005. ISBN: 0-32-111358-6. Chapter 76: 'Use vector by default. Otherwise, choose an appropriate container'.
- Herb Sutter, Andrei Alexandrescu. C++ coding standards: 101 rules, guidelines, and best practices. 2005. ISBN: 0-32-111358-6. Chapter 77: 'Use vector and string instead of arrays'.
- Marshall Cline, Greg Lomow and Mike Girou. C++ FAQs. ISBN: 0-201-3098301. FAQ 28.02: 'Are arrays good or evil?' (Answer: 'Arrays are evil').
- Bjarne Stroustrup. The C++ Programming Language (3rd edition). 1997. ISBN: 0-201-88954-4. Chapter C.14.11 'Prefer vector over array'.
- Bjarne Stroustrup. The C++ Programming Language (4th edition). 2013. ISBN: 978-0-321-56384-2. Chapter 31.6. Advice. page 924: '[2] Use vector as your default container'
- Bjarne Stroustrup. The C++ Programming Language (4th edition). 2013. ISBN: 978-0-321-56384-2. Chapter 31.6. Advice. page 924: '[21] Don't use iterators into a resized vector or deque'
- Bjarne Stroustrup. The C++ Programming Language (4th edition). 2013. ISBN: 978-0-321-56384-2. Chapter 31.6. Advice. page 924: '[19] Don't assume performance benefits from reserve() without measurements'
- Bjarne Stroustrup. The C++ Programming Language (4th edition). 2013. ISBN: 978-0-321-56384-2. Chapter 31.6. Advice. page 924: '[22] When necessary, use reserve() to make performance predictable'
- Bjarne Stroustrup. The C++ Programming Language (4th edition). 2013. ISBN: 978-0-321-56384-2. Chapter 31.6. Advice. page 924: '[23] Do not assume that [] range checks'
- Bjarne Stroustrup. The C++ Programming Language (4th edition). 2013. ISBN: 978-0-321-56384-2. Chapter 31.6. Advice. page 924: '[24] Use at() when you need guaranteed range checks'
- Bjarne Stroustrup. The C++ Programming Language (4th edition). 2013. ISBN: 978-0-321-56384-2. Chapter 31.6. Advice. page 924: '[25] Use emplace() for notational convenience'
- Bjarne Stroustrup. The C++ Programming Language (4th edition). 2013. ISBN: 978-0-321-56384-2. Chapter 31.6. Advice. page 925: '[27] Use emplace() to avoid having to pre-initialize variables'
Go back to Richel Bilderbeek's C++ page.
Go back to Richel Bilderbeek's homepage.
