vote up 5 vote down star
1

I have roughly the following code. Could this be made nicer or more efficient? Perhaps using std::remove_if? Can you remove items from the map while traversing it? Can we avoid using the temporary map?

typedef std::map<Action, What> Actions;
static Actions _actions;

bool expired(const Actions::value_type &action)
{
  return <something>;
}

void bar(const Actions::value_type &action)
{
  // do some stuff
}

void foo()
{
  // loop the actions finding expired items
  Actions actions;
  BOOST_FOREACH(Actions::value_type &action, _actions)
  {
    if (expired(action))
      bar(action);
    else
      actions[action.first]=action.second;
    }
  }
  actions.swap(_actions);
}
flag

4 Answers

vote up 4 vote down check

You could use erase(), but I don't know how BOOST_FOREACH will handle the invalidated iterator. The documentation for map states that only the erased iterator will be invalidated, the others should be OK. Here's how I would restructure the inner loop:

Actions::iterator it = _actions.begin();
while (it != _actions.end())
{
  if (expired(*it))
  {
    bar(*it);
    Actions::iterator toerase = it;
    ++it;
    _actions.erase(toerase);
  }
  else
    ++it;
}
link|flag
Thanks, that's roughly what I came up with too – 1800 INFORMATION Oct 7 '08 at 22:06
vote up 12 vote down

A variation of Mark Ransom algorithm but without the need for a temporary.

for(Actions::iterator it = _actions.begin();it != _actions.end();)
{
    if (expired(*it))
    {
        bar(*it);
        _actions.erase(it++);  // Note the post increment here.
                               // This increments 'it' and returns a copy of
                               // the original 'it' to be used by erase()
    }
    else
    {
        ++it;  // Use Pre-Increment here as it is more effecient
               // Because no copy of it is required.
    }
}
link|flag
vote up -1 vote down

Something that no one ever seems to know is that erase returns a new, guaranteed-to-be-valid iterator, when used on any container.

Actions::iterator it = _actions.begin();
while (it != _actions.end())
{
  if (expired(*it))
  {
    bar(*it);
    it = _actions::erase(it);
  }
  else
    ++it;
}

Storing actions.end() is probably not a good plan in this case since iterator stability is not guaranteed, I believe.

link|flag
According to the documentation I linked in my response, erase returns void, and your code sample won't compile. – Mark Ransom Oct 7 '08 at 22:25
This is an extension in VC++, I think – 1800 INFORMATION Oct 7 '08 at 23:08
This is not true for any Container, only those that are models of Sequence. For containers that are a model of Associative Container, erase has a return type of void. – camh Oct 7 '08 at 23:29
How about [this vector::erase doc](cplusplus.com/reference/stl/…)? It clearly says it has erase() return iterator. Doesn't say anything about it being MS extension. – Marcin Gil Oct 8 '08 at 8:16
@Marcin, std::vector's erase does return an iterator. But this discussion is about std::map. Which has an erase that returns void. – Evan Teran Oct 8 '08 at 17:37
vote up 1 vote down

If the idea is to remove expired items, why not use map::erase? This way you only have to remove elements you don't need anymore, not rebuild an entire copy with all the elements that you want to keep.

The way you would do this is to save off the iterators pointing to the elements you want to erase, then erase them all after the iteration is over.

Or, you can save off the element that you visited, move to the next element, and then erase the temporary. The loop bounds get messed up in your case though, so you have to fine tune the iteration yourself.

Depending on how expired() is implemented, there may be other better ways. For example if you are keeping track of a timestamp as the key to the map (as expired() implies?), you can do upper_bound on the current timestamp, and all elements in the range [ begin(), upper_bound() ) need to be processed and erased.

link|flag

Your Answer

Get an OpenID
or

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