Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've got a std::set<int> which has n items in it. And I want to get rid of n-k bigger elements and keep the first (least) k elements. How should I do so? Is there a pre-defined function for this?

share|improve this question

2 Answers

up vote 10 down vote accepted

A std::set is ordered.

std::set<int>::const_iterator i = myset.begin();
std::advance(i, k);
myset.erase(i, myset.end());
share|improve this answer
2  
std::advance(i, k);, surely? – Charles Bailey Nov 5 '10 at 8:38
1  
Sure, I wonder what I was thinking of. – Benoit Nov 5 '10 at 8:45
1  
Shouldn't be std::set<int>::iterator instead of std::set<int>::const_iterator? – Luca Martini Nov 5 '10 at 9:27
@Luca : I have not tried it. You could be right! – Benoit Nov 5 '10 at 9:33
1  
And in case it isn't obvious, advance doesn't bounds-check k, so make sure k <= myset.size(). Which is sort of implicit in the question anyway. – Steve Jessop Nov 5 '10 at 12:43

Use the erase function :

http://www.cplusplus.com/reference/stl/set/erase/

share|improve this answer

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.