I have a std::set, what\'s the proper way to find the largest int in this set?
std::set
Since set sorts the element in ascending order by default, just pick up the last element in the set.