Possible Duplicate:
remove_if equivalent for std::map

Yesterday i wrote a program, which use multiset for storing elements like this:

std::multiset < boost::shared_ptr < CEntity > > m_Entities;

Then i try to use standard algorithm remove_if like this:

std::remove_if(m_Entities.begin, m_Entities.end(), MarkedForDestroy);

BUT compilation failed, because if we see in GCC 4.4 implementaion of set and multiset we see that:

typedef typename _Rep_type::const_iterator            iterator;
typedef typename _Rep_type::const_iterator            const_iterator;

I was shocked. I google this moment and better that i found that this does not contradict the standard. The same for set.

How this cannot contradict if standart algorithms doesnt work? How i can better change container?

link|improve this question

72% accept rate
1  
Duplicate of remove_if equivalent for std::map – James McNellis Sep 23 '10 at 6:01
feedback

closed as exact duplicate by James McNellis, Matthew Flaschen, GManNickG, Matthieu M., Dummy00001 Sep 23 '10 at 9:22

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

3 Answers

up vote 4 down vote accepted

You can not use std::remove_if algorithm on an associative container. You need to a write a for loop and use the erase method to remove the elements. See this similar question remove_if equivalent for std::map for more details.

link|improve this answer
Thanks, this is better than previous answer. – den bardadym Sep 23 '10 at 6:10
feedback

All standard ordered/associative containers (map, set, multimap, multiset) have immutable keys (just the keys not the entire container).

As to why just look at what would need to happen every time you would change the value of the key: the key type would need somehow to notify it's container that it got changed (which would introduce a very tight and unnecessary coupling between the container & it's key type - not to mention being impossible to do for fundamental types) because the container would need to be resorted so to keep it's ordering property (which is a pretty big overhead).

link|improve this answer
feedback

Because multiset (and also set) are immutable containers, i.e. elements in the container cannot be changed modified in-place, they can be removed, modified, and (re-)inserted.

See, for example:

  • a different set related answer
  • section 27.3.2.1 in this tutorial

In simple associative containers, where the elements are the keys, the elements are completely immutable; the nested types iterator and const_iterator are therefore the same.

link|improve this answer
I have understood this. Why this is so? Set have an order, why such problems? – den bardadym Sep 23 '10 at 6:03
No, they're not. – Matthew Flaschen Sep 23 '10 at 6:05
@den bardadym: Note that remove_if doesn't actually "remove" the elements from the container instead it just moves the elements to the end of the container. For sequential containers moving to the end makes sense but for associative containers in which elements are stored in a sorted order, this doesn't make sense as it will break their ordering. – Naveen Sep 23 '10 at 6:12
@Matthew Flaschen: I know that elements can be inserted in a set, I did not restricted that when I said "elements cannot be modified". What I meant was elements cannot be modified in place. Thats because in [multi]set the elements themselves are keys of the underlying BST, and if the keys are modified, the BST may no longer remain a BST. – ArunSaha Sep 23 '10 at 6:16
@naveen: Thanks, i dont know this. – den bardadym Sep 23 '10 at 6:28
show 3 more comments
feedback

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