C++ Map Library - upper_bound() Function



Description

The C++ function std::map::upper_bound() returns an iterator pointing to the first element which is greater than key k.

Declaration

Following is the declaration for std::map::upper_bound() function form std::map header.

C++98

iterator upper_bound (const key_type& k);
const_iterator upper_bound (const key_type& k) const;

Parameters

k − Key to be searched.

Return value

If object is constant qualified then method returns a constant iterator otherwise non-constant iterator.

Exceptions

This member function doesn't throw exception.

Time complexity

Logarithmic i.e. O(log n)

Example

The following example shows the usage of std::map::upper_bound() function.

#include <iostream>
#include <map>

using namespace std;

int main(void) {
   map<char, int> m = {
            {'a', 1},
            {'b', 2},
            {'c', 3},
            {'d', 4},
            {'e', 5},
            };

   auto it = m.upper_bound('b');

   cout << "Upper bound is " << it->first << 
      " = " << it->second << endl;

   return 0;
}

Let us compile and run the above program, this will produce the following result −

Upper bound is c = 3
map.htm
Advertisements