vote up 0 vote down star

Suppose I have a hash_map and a code like

// i is an iterator
i = hash_map.erase(i)

But GCC's STL doesn't return iterator in erase, but a void. Now is a code like

hash_map.erase(i++)

safe (i.e. does not invalidate the iterator or does any other unexpected or unpleasant things)? Please note this is a hash_map.

flag

2 Answers

vote up 2 vote down check

Yes, this is safe, because the value of i will have been set to the next value, before the current value is erased.

According to the SGI documentation about hashed containers invalidation does not occur for non-erased elements, nor even for resizing (there is no word on whether insertions cause resizing, so to be careful I admit that as a possibility)---but in the latter case, the iteration order will be changed. But this doesn't apply here, unless you go out of your way to resize the container during traversal or something. :-)

link|flag
Can you point out where you read that? This is true for associative container as defined in the ISO C++, but I never read anything like that in the SGI documentation. – PierreBdR Oct 20 '08 at 10:31
It's on that page linked to in my post. I do assume, for that site, that unless specifically mentioned otherwise, operations do not cause invalidation. See sgi.com/tech/stl/Vector.html (for example) where all the invalidation cases are mentioned. – Chris Jester-Young Oct 20 '08 at 12:52
(I picked vector specifically because that's a data type that has (seemingly) more cases of invalidation than any other.) – Chris Jester-Young Oct 20 '08 at 12:53
vote up -3 vote down

Hate to rain on the parade, but I don't think what you propose is safe.

i++ is the post-increment operator, which means i is incremented after the call to erase. But erase invalidates all iterators pointing to the element being erased. So by the time i is incremented it's not valid any more.

If you're lucky it may work correctly by accident until one day it doesn't any more.

As far as I'm aware there is no way around this but something like:

// tmp and i are both iterators
tmp = i;
++i;
hash_map.erase(tmp);
link|flag
According to the standard, it++ and it-- (where it is an iterator) are equivalent to creating a temp equal to it, decrementing the iterator, and returning the temp. – hazzen Oct 21 '08 at 2:05
Yes, but the compiler is free to call (i++) before or after the call to erase, so if the compiler decides to do (i++) after erase then i is invalid. – Rodyland Oct 26 '08 at 21:03
Rodyland, do you have any citation for that claim? I have never heard that. – rlbond Mar 30 at 14:28
I've done further reading and it seems I was mistaken - the compiler is forced to evaluate (i++) before calling erase, so it's safe. That said, I still don't like it. – Rodyland Apr 1 at 0:20
I agree that this is an item not very safe, but the use of the increment operator is defined in this case. More on this same subject:stackoverflow.com/questions/436013/… – lsalamon Oct 26 at 15:15

Your Answer

Get an OpenID
or

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