I\'m new to C++. I\'d like to know how experienced coders do this.
what I have:
set s;
s.insert(1);
s.insert(2);
s.insert(3);
s.insert(4);
The best way is to use the combination of remove_if and erase
s.erase(remove_if(s.begin(), s.end(), evenOddFunctor), s.end())
This will be helpful http://en.wikibooks.org/wiki/More_C%2B%2B_Idioms/Erase-Remove
Also Refer to effective STL by scott meyers
Edit
: Although my solution is wrong i am not deleting it. It might be a good learning for someone like me who does not about mutable/immutable iterators