I have encountered a problem invoking the following code:
#include<deque>
using namespace std;
deque<int> deq = {0,1,2,3,4,5,6,7,8};
for(auto it = deq.begin(); it != deq.end(); it++){
if(*it%2 == 0)
deq.erase(it);
}
which resulted in a segmentation fault. After looking into the problem I found that the problem resides in the way the STL manages iterators for deques: if the element being erased is closer to the end of the deque, the iterator used to point to the erased element will now point to the NEXT element, but not the previous element as vector::iterator
does. I understand that modifying the loop condition from it != deq.end()
to it < deq.end()
could possibly solve the problem, but I just wonder if there is a way to traverse & erase certain element in a deque in the "standard form" so that the code can be compatible to other container types as well.
To use the erase-remove idiom, you'd do something like:
Be sure to
#include <algorithm>
to makestd::remove_if
available.http://en.cppreference.com/w/cpp/container/deque/erase
This is a common pattern when removing elements from an STL container inside a loop:
Or as chris mentioned you could just use
std::remove_if
.