up vote 7 down vote favorite
share [g+] share [fb]

I have a std::set, what's the proper way to find the largest int in this set ?

link|improve this question

75% accept rate
feedback

4 Answers

up vote 17 down vote accepted

What comparator are you using?

For the default this will work:

if(!myset.empty())
    *myset.rbegin();
else
    //the set is empty

This will also be constant time instead of linear like the max_element solution.

link|improve this answer
4  
Unless of course the set is empty. – Mark Ransom Aug 27 '09 at 16:08
Finding the max element is constant time, yes, but populating the set is not, since it's sorting at insert. A unordered_set has constant time insert, but would require a search for the maximum element. – crunchdog Aug 27 '09 at 16:22
But since the original question starts with "I have a std::set", we can assume that non-constant insertion time is going to be incurred regardless of our searching mechanism. Since you've already paid the price, why not take advantage of it by using a constant-time search method? – Darryl Aug 27 '09 at 18:11
feedback

Sets are always ordered. Assuming you are using the default comparison (less), just grab the last element in the set. rbegin() might be useful.

link|improve this answer
feedback

I believe you are looking for std::max_element:

The max_element() function returns an iterator to the largest element in the range [start,end).

link|improve this answer
3  
This seems like the slow way to do it, since max_element can't know that the range is sorted. – Mark Ransom Aug 27 '09 at 16:10
This is what I get for answering a question outside my comfort zone :) I didn't know that an std::set was sorted by default. Since I assumed that it was not sorted an O(n) algorithm seemed to be the only practical choice. Now knowing what I know, yes this answer is not optimal. – Andrew Hare Aug 27 '09 at 17:08
feedback

Since set sorts the element in ascending order by default, just pick up the last element in the set.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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