Perhaps this is a duplicate but I did not find anything searching: When erase(value) is called on std::multiset all elements with the value found are deleted. The only solution I could think of is:

std::multiset<int>::iterator hit(mySet.find(5));
if (hit!= mySet.end()) mySet.erase(hit);

This is ok but I thought there might be better. Any Ideas ?

link|improve this question

68% accept rate
5  
This is a perfectly reasonable approach. – templatetypedef Feb 6 at 21:49
Does this approach ensures that the given key ("5") is duplicate? – ArunSaha Feb 6 at 22:18
@ArunSaha: No. But if its not a duplicate, I want to delete it anyhow. From the answers I got, I get the feeling that there is no better solution. Maybe the question was stupid in the first place :-P – Martin Feb 6 at 22:22
@Martin: If you want to delete it anyhow, then what is wrong with just erase( 5 ) which erases all copies of "5"? – ArunSaha Feb 7 at 17:02
feedback

3 Answers

I would try the following.

First call equal_range() to find the range of elements that equal to the key.

If the returned range is non-empty, then erase() a range of elements (i.e. the erase() which takes two iterators) where:

  • the first argument is the iterator to the 2nd element in the returned range (i.e. one past .first returned) and

  • the second argument as the returned range pair iterator's .second one.


Edit after reading templatetypedef's (Thanks!) comment:

If one (as opposed to all) duplicate is supposed to be removed: If the pair returned by equal_range() has at least two elements, then erase() the first element by passing the the .first of the returned pair to single iterator version of the erase():

Pseudo-code:

pair<iterator, iterator> pit = mymultiset.equal_range( key );

if( distance( pit.first, pit.second ) >= 2 ) {
    mymultiset.erase( pit.first );
}
link|improve this answer
1  
I think the question is asking about eliminating just one duplicate, not all duplicates. – templatetypedef Feb 6 at 21:53
Do have an idea whether this is faster than my solution and if yes why ? – Martin Feb 7 at 18:26
feedback

Not that I know of but you can do a find() and erase().

link|improve this answer
5  
Did you actually read the question? What additional information does your answer provide? – Niklas B. Feb 6 at 21:50
@NiklasB. Yes it's my fault. I read the descriptive part but not the code. Or not sure if he added the code later. – Sid Feb 6 at 21:54
feedback

If you really just want to delete a duplicate, which means preserving a singular entry, you can use multiset::equal_range as suggested. Otherwise, I can't think of a better way doing it.

A modified example, I stole here:

http://www.cplusplus.com/reference/stl/multiset/equal_range/

#include <iostream>
#include <set>
using namespace std;

int main()
{
    int myints[] = { 77, 30, 16, 2, 30, 30 };
    multiset<int> mymultiset(myints, myints + 6); // 2 16 30 30 30 77

    int key = 16;
    //****delete 1 duplicate of 'key'****
    pair<multiset<int>::iterator, multiset<int>::iterator> range = mymultiset.equal_range(key);
    if(range.first != range.second && range.first != (--range.second))
        mymultiset.erase(range.first);
    //***********************************

    cout << "mymultiset contains:";
    for (multiset<int>::iterator it = mymultiset.begin(); it != mymultiset.end(); ++it)
        cout << " " << *it;
    cout << endl;

    return 0;
}
link|improve this answer
-1 ? : Something wrong with this code? – user1175253 Mar 25 at 9:43
feedback

Your Answer

 
or
required, but never shown

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