Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
std::vector<int> v = {1,2,3,4,5};
auto i = std::remove(v.begin(),v.end(),3); 
for(auto j = v.begin(); j!= v.end();++j)
   std::cout << *j;

Actual output : 12455

Where does extra 5 come from?

Desired output : 1245

How to achieve the same?

I actually want the size of the vector to change , the answer given by Prasoon saurav looks correct

share|improve this question

4 Answers

up vote 25 down vote accepted

remove doesnt actually remove the elements

Remove removes from the range [first, last) all elements that are equal to value. That is, remove returns an iterator new_last such that the range [first, new_last) contains no elements equal to value. 1 The iterators in the range [new_last, last) are all still dereferenceable, but the elements that they point to are unspecified. Remove is stable, meaning that the relative order of elements that are not equal to value is unchanged.`

std::remove algorithm works only using a pair of forward iterators and in general knows nothing about the underlying container.

You need to use the erase-remove idiom to actually remove the element i.e combine erase with remove

auto i = std::remove(v.begin(),v.end(),3);
v.erase(i,v.end());
for(auto j = v.begin(); j!= v.end();++j)
   std::cout << *j;
share|improve this answer
4  
@Rookie: Look at that remove() call again. That algorithm sees a sequence and has no access to the container, so how could it remove anything from it? – sbi Jan 24 '11 at 11:15
2  
"the erase-remove idiom" - which is given right at the end of the page, in the "notes". – Steve Jessop Jan 24 '11 at 11:15
2  
@GMan: I meant to upvote your answer and delete my above comment. Why did you delete your answer? It contains an important point Prasoon hadn't made (yet). – sbi Jan 24 '11 at 11:16
1  
@sbi: I have to agree with Prasoon in this one. The question is quite clear in that he wants the container after the operation not to contain the last element (duplicate 5). I don't think that this question/answer can be misinterpreted by anyone in the future. The question is clear and precise, the answer is correct. Also, I would not like to see the elements left at the end of the container just to spare a few CPU cycles... 99.99% of the time that micro-optimization would be unneeded, and just posting it in the answer might make people believe that it is worth doing it. – David Rodríguez - dribeas Jan 24 '11 at 11:33
2  
@David: but the distinction is significant, and I agree with @sbi that the OP should be aware of it. Anything that nudges people towards a better understanding of the library they're using is a good thing, I'd say. – jalf Jan 24 '11 at 11:36
show 7 more comments

Read the documentation for std::remove again.

The function does not remove elements from a container (in fact, it doesn't even know that a container is involved, as it only sees iterators), it merely moves values in a sequence and return a new iterator i such that all the interval [ begin .. i [ contains all non-removed elements in the original order. Elements left over in [ i .. end [ are unspecified, and it is your responsibility to eliminate that interval from a container (if you need it):

auto i = std::remove(...);
v.erase(i,v.end());

The reason why you have an additional 5 is that the typical removal algorithm copies values into holes left by removed values, and since values past the i iterator are never overwritten, they remain the same as in the original sequence. This behavior, however, is not reliable - just eliminate the values past i without reading them.

share|improve this answer

remove returns the new end. So the fix of your code is this:

 std::vector<int> v = {1,2,3,4,5};
 auto newEnd = std::remove(v.begin(),v.end(),3);//return value stored in newEnd
 for(auto j = v.begin(); j!= newEnd ;++j) //note j!=newEnd
     std::cout << *j;

Output:

1245

Check it out yourself : http://www.ideone.com/3AMD9

share|improve this answer

It's seams that you are printing the n+1 position of the vector in the for() statement. It should be:

for(auto j = v.begin(); j!= v.end();j++)
   std::cout << *j;

j++ no ++j

share|improve this answer
2  
In the context of a for loop, j++ and ++j are equivalent (though, for iterators, there may be performance differences). – Victor Nicollet Jan 24 '11 at 11:23
in this context, j++ and ++j result in the same behavior. – xtofl Jan 24 '11 at 11:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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