I'm trying to walk through a list. Here are some declarations:

list<CG1_Edge*> ActiveEdges;
list<CG1_Edge*>::iterator ActiveEdgeIterator;

Sometimes, this code segfaults on line 2:

for (this->ActiveEdgeIterator = this->ActiveEdges.begin(); this->ActiveEdgeIterator != this->ActiveEdges.end(); ++this->ActiveEdgeIterator) {
    CG1_Edge* currentEdge = *this->ActiveEdgeIterator;
    if (currentEdge->y_up < y)
        this->ActiveEdges.erase(this->ActiveEdgeIterator);
}

Are there any common reasons why this might result in a segfault?

link|improve this question

4  
Just a note of style: I would replace the for loop with std::remove_if and container resize. Algorithms from the STL hide many iterator-details and make code more readable (when I see a for loop I only know that this is some kind of iteration and when I see an STL algorithm I know exactly what it is). – Begemoth Apr 3 '11 at 10:00
Begemoth's comment should be the accepted answer. According to the standard erase invalidates "all iterator and references to elements after position". So you'd at least NEED to use rbegin() and rend(). But why not use the std::alogirthms! – sehe Apr 3 '11 at 10:54
@sehe: no, that is incorrect. list::erase does not invalidate the iterators, except those positioned at the erased element. – Mat Apr 3 '11 at 10:57
My bad, I was referring to the docs of std::vector mistakenly – sehe Apr 3 '11 at 11:00
feedback

2 Answers

up vote 5 down vote accepted

You should use something like:

for (this->ActiveEdgeIterator = this->ActiveEdges.begin(); this->ActiveEdgeIterator != this->ActiveEdges.end(); ) {
    CG1_Edge* currentEdge = *this->ActiveEdgeIterator;
    if (currentEdge->y_up < y)
        this->ActiveEdgeIterator = this->ActiveEdges.erase(this->ActiveEdgeIterator);
    else
        ++this->ActiveEdgeIterator;
}

since erase returns an iterator positionned at the next element.

(Note: having that iterator as a member looks strange.)

link|improve this answer
1  
Yeah, this snippet, unlike Alexander's doesn't make you skip one element each time you erase one and doesn' make the iterator go out of bounds when you erase the last element. – nietaki Apr 3 '11 at 10:06
1  
Since this is obviously less flawed, I decided to drop my response in favour of yours :-) – Alexander Gessler Apr 3 '11 at 10:16
feedback

Begemoth's comment should be the accepted answer. According to the standard erase invalidates "all iterator and references to elements after position"(my mistake; this was for vector and possibly other containers; so at least to avoid surprises you should do well to use the algorithm version instead).

So you'd be safer already using rbegin() and rend(). But why not use the std::alogirthms!

struct Predicate 
{
     int _y;
     explicit Predicate(int y) : _y(y) {}

     bool operator()(const CG1_Edge edge) const
     {
          return currentEdge->y_up < _y;
     }
};

std::erase(
     std::remove_if(this->ActiveEdges.begin(), this->ActiveEdges.end(), Predicate(y)),
     this->ActiveEdges.end());
link|improve this answer
list::erase and vector::erase are different beasts. list::erase only invalidates the iterators positioned at the erased element. not those after, not those before. – Mat Apr 3 '11 at 11:00
yup - duly noted, thanks – sehe Apr 3 '11 at 11:01
Prefer member-functions when present. They are likely optimized for the container type in question. list::remove_if is better in this situation. – Daniel T. Apr 4 '11 at 2:02
... since it actually removes the elements rather than shifting them to the back of container like std::remove_if does. So no erasing is necessary. – Daniel T. Apr 4 '11 at 2:08
Yup. All true. I like to stick with the algorithms because there will be no surprises when switching from list<> to vector<>. But: awareness trumps convention and optimize when necessary! – sehe Apr 4 '11 at 6:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.