At the moment my solution is to iterate through the map to solve this.
I see there is a upper_bound method which can make this loop faster, but is there a quicker or more succinct way?
|
|
|
|
|
|
|
The end:
Maps (and sets) are sorted, so the first element is the smallest, and the last element is the largest. By default maps use Keep in mind
|
||||||
|
|
|
The entries in a std::map are sorted, so for a std::map m (assuming |
||
|
|
|
|
As std::map is assosiative array one can easily find biggest or smallest key very easily. By defualt compare function is less(<) operator so biggest key will be last element in map. Similarly if someone has different requirement anyone can modify compare function while declaring map. std::map< key, Value, compare< key,Value > > By default compare=std::less |
||
|
|