vote up 1 vote down star
1

I got this question when I was reading erase-remove idiom (item 32) from Scott Meyers "Effective STL” book.

vector<int> v; 
...
v.erase(remove(v.begin(), v.end(), 99), v.end());

remove basically returns the "new logical end” and elements of the original range that start at the "new logical end" of the range and continue until the real end of the range are the elements to be erased from container.

Sounds good. Now, let me ask my question:

In the above example, remove can return v.end() if 99 is not found in the vector v. It is basically passing past-the-end-iterator to erase method.

  1. What happens when past-the-end-iterator is passed to the erase method? Does standard says it a UB?
  2. If it is undefined behavior, then erase-remove idiom example in Scott Meyer’s book should have looked like:

  vector<int> v; 
    ...
    vector<int>::iterator newEndIter = remove(v.begin(), v.end(), 99);
    if(newEndIter != v.end() )
    {
     v.erase(newEndIter, v.end();
    }

Any ideas on this?

flag

77% accept rate
By definition v.end() is not past-the-end, it is the end :x – Matthieu M. Nov 5 at 7:40
3  
@Matthieu M. Documentation of std::vector::end() says: "Returns an iterator referring to the past-the-end element in the vector container." – Julien L. Nov 5 at 9:53

2 Answers

vote up 2 vote down

The C++ standard says that the erase(q1,q2) member "erases the elements in the range [q1,q2)" (cf. section 23.1.1). Since the range excludes the last element,

v.erase(v.end(), v.end());

is valid and erases nothing.

link|flag
You may need to explain what the mathematical notation [x,y) means. Unless you have a degree in maths (or related subject) you probably don't know. – Martin York Nov 5 at 5:39
Really? I do have a degree in maths but I honestly always thought this notation was well-known. – rlbond Nov 5 at 6:47
1  
You can find the Wikipedia page on mathematical intervals at en.wikipedia.org/wiki/Interval_%28mathematics%29/… – James McNellis Nov 5 at 14:19
vote up 4 vote down

I would think v.erase(v.end(), v.end()) would be well defined and erase nothing.

link|flag
It is, a valid iterator is in [v.begin(), v.end()] INCLUSIVE. – Matthieu M. Nov 5 at 7:39

Your Answer

Get an OpenID
or

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