vote up 5 vote down star
1

I've got code that looks like this:

for (std::list<item*>::iterator i=items.begin();i!=items.end();i++)
{
    bool isActive = (*i)->update();
    //if (!isActive) 
    //  items.remove(*i); 
    //else
       other_code_involving(*i);
}
items.remove_if(CheckItemNotActive);

I'd like remove inactive items immediately after update them, inorder to avoid walking the list again. But if I add the commented-out lines, I get an error when I get to i++: "List iterator not incrementable". I tried some alternates which didn't increment in the for statement, but I couldn't get anything to work.

What's the best way to remove items as you are walking a std::list?

flag

78% accept rate

5 Answers

vote up 11 vote down check

You have to increment the iterator first (with i++) and then remove the previous element (e.g., by using the returned value from i++). You can change the code to a while loop like so:

std::list<item*>::iterator i = items.begin();
while (i != items.end())
{
    bool isActive = (*i)->update();
    if (!isActive)
    {
        items.erase(i++);  // alternatively, i = items.erase(i);
    }
    else
    {
        other_code_involving(*i);
        ++i;
    }
}
link|flag
perfect, worked like a charm. – AShelly Feb 27 at 19:46
Actually, that's not guaranteed to work. With "erase(i++);", we only know that the pre-incremented value is passed to erase(), and the i is incremented before the semi-colon, not necessarily before the call to erase(). "iterator prev = i++; erase(prev);" is sure to work, as is use the return value – James Curran Feb 27 at 20:03
No James, i is incremented before calling erase, and the previous value is passed to the function. A function's arguments have to be fully evaluated before the function is called. – Brian Neal Feb 27 at 20:07
@ James Curran: That's not correct. ALL arguments are fully evaluated before a function is called. – Martin York Feb 28 at 0:59
Last time I checked, James was right. The only guarantees are that i++ will happen before the next statement and after i++ is used. Whether that is before erase(i++) is invoked or afterwards is compiler dependent. Otherwise constructs like foo.b(i++).c(i++) would be legal. – mrree Feb 28 at 13:53
show 2 more comments
vote up 9 vote down

You want to do:

i= items.erase(i);

That will correctly update the iterator to point to the location after the iterator you removed.

link|flag
Be warned that you can't just drop that code into your for-loop. Otherwise you'll skip an element every time you remove one. – Kristo Feb 27 at 19:39
vote up 5 vote down

Use std::remove_if algorithm.

Edit: Work with collections should be like: 1. prepare collection. 2. process collection.

Life will be easier if you won't mix this steps.

  1. std::remove_if. or list::remove_if ( if you know that you work with list and not with the TCollection )
  2. std::for_each
link|flag
std::list has a remove_if member function which is more efficient than the remove_if algorithm (and doesn't require the "remove-erase" idiom). – Brian Neal Feb 27 at 20:03
vote up 2 vote down

Removal invalidates only the iterators that point to the elements that are removed.

So in this case after removing *i , i is invalidated and you cannot do increment on it.

What you can do is first save the iterator of element that is to be removed , then increment the iterator and then remove the saved one.

link|flag
Using post-increment is far more elegant. – Brian Neal Feb 27 at 20:05
vote up 2 vote down

You need to do the combination of Kristo's answer and MSN's:

// Note: Using the pre-increment operator is preferred for iterators because
//       there can be a performance gain.
//
// Note: As long as you are iterating from beginning to end, without inserting
//       along the way you can safely save end once; otherwise get it at the
//       top of each loop.

std::list< item * >::iterator iter = items.begin();
std::list< item * >::iterator end  = items.end();

while (iter != items.end())
{
    item * pItem = *iter;

    if (pItem->update() == true)
    {
        other_code_involving(pItem);
        ++iter;
    }
    else
    {
        // BTW, who is deleting pItem, a.k.a. (*iter)?
        iter = items.erase(iter);
    }
}

Of course, the most efficient and SuperCool® STL savy thing would be something like this:

// This implementation of update executes other_code_involving(Item *) if
// this instance needs updating.
//
// This method returns true if this still needs future updates.
//
bool Item::update(void)
{
    if (m_needsUpdates == true)
    {
        m_needsUpdates = other_code_involving(this);
    }

    return (m_needsUpdates);
}

// This call does everything the previous loop did!!! (Including the fact
// that it isn't deleting the items that are erased!)
items.remove_if(std::not1(std::mem_fun(&Item::update)));
link|flag
I did consider your SuperCool method, my hesitation was that the call to remove_if does not make it clear that the goal is to process the items, rather than remove them from the list of active ones. (The items aren't being deleted because they are only becoming inactive, not unneeded) – AShelly Feb 27 at 22:40
I suppose you are right. On one hand I'm inclined to suggest changing the name of 'update' to remove the obscurity, but the truth is, this code is fancy with the functors, but it is also anything but non-obscure. – Mike Mar 2 at 0:35

Your Answer

Get an OpenID
or

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