I was looking at the API documentation for stl vector, and noticed there was no method on the vector class that allowed the removal of an element with a certain value. This seems like a common operation, and it seems odd that there's no built in way to do this.
|
|
std::remove doesn't actually erase the element from the container, but it does return the new end iterator which can be passed to container_type::erase to do the REAL removal of the extra elements that are now at the end of the container:
|
|||||||||
|
|
Use the global method std::remove with the begin and end iterator, and then use std::vector.erase to actually remove the elements. Documentation links
Thanks to Jim Buck for pointing out my error. |
||||
|
|
|
I know I've mentioned this several times before but Scott Meyer's book Effective STL covers these gotchas in a clear way. |
||||
|
|
|
See also std::remove_if to be able to use a predicate... |
|||
|
|
|
If you have an unsorted vector, then you can simply swap with the last vector element then resize(). With an ordered container, you'll be best off with std::vector::erase(). Note that there is a std::remove() defined in <algorithm>, but that doesn't actually do the erasing. (Read the documentation carefully). |
|||
|
|
|
The other answers cover how to do this well, but I thought I'd also point out that it's not really odd that this isn't in the vector API: it's inefficient, linear search through the vector for the value, followed by a bunch of copying to remove it. If you're doing this operation intensively, it can be worth considering std::set instead for this reason. |
|||
|
|
|
If you want to remove an item, the following will be a bit more efficient.
|
|||
|
|