I have a std::set, what's the proper way to find the largest int in this set ?
|
feedback
|
|
What comparator are you using? For the default this will work:
This will also be constant time instead of linear like the max_element solution. | |||||||||
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. | |||
|
feedback
|
|
I believe you are looking for
| |||||||
feedback
|
|
Since set sorts the element in ascending order by default, just pick up the last element in the set. | |||
|
feedback
|