multimap lower_bound() function in C++ STL
The multimap::lower_bound(k) is a built-in function in C++ STL which returns an iterator pointing to the key in the container which is equivalent to k passed in the parameter. In case k is not present in the multimap container, the function returns an iterator pointing to the immediate next element which is just greater than k. If the key passed in the parameter exceeds the maximum key in the container, then the iterator returned points to key+1 and element = 0.
Syntax:
multimap_name.lower_bound(key)
Parameters: This function accepts a single mandatory parameter key which specifies the element whose lower_bound is to be returned.
Return Value: The function returns an iterator pointing to the key in the container which is equivalent to k passed in the parameter. In case k is not present in the multimap container, the function returns an iterator pointing to the immediate next element which is just greater than k. If the key passed in the parameter exceeds the maximum key in the container, then the iterator returned points to key+1 and element=0.
// C++ function for illustration // multimap::lower_bound() function #include <bits/stdc++.h> using namespace std; int main() { // initialize container multimap<int, int> mp; // insert elements in random order mp.insert({ 2, 30 }); mp.insert({ 1, 40 }); mp.insert({ 2, 60 }); mp.insert({ 2, 20 }); mp.insert({ 1, 50 }); mp.insert({ 4, 50 }); // when 2 is present auto it = mp.lower_bound(2); cout << "The lower bound of key 2 is "; cout << (*it).first << " " << (*it).second << endl; // when 3 is not present it = mp.lower_bound(3); cout << "The lower bound of key 3 is "; cout << (*it).first << " " << (*it).second << endl; // when 5 exceeds it = mp.lower_bound(5); cout << "The lower bound of key 3 is "; cout << (*it).first << " " << (*it).second << endl; return 0; } |
The lower bound of key 2 is 2 30 The lower bound of key 3 is 4 50 The lower bound of key 3 is 6 0
Recommended Posts:
- multimap::cbegin() and multimap::cend() in C++ STL
- multimap::crbegin() and multimap::crend() in C++ STL
- multimap get_allocator() function in C++ STL
- multimap swap() function in C++ STL
- multimap upper_bound() function in C++ STL
- multimap clear() function in C++ STL
- multimap value_comp() function in C++ STL
- multimap size() function in C++ STL
- multimap empty() function in C++ STL
- multimap::begin() and multimap::end() in C++ STL
- multimap::swap() in C++ STL
- multimap key_comp in C++ STL
- multimap equal_range() in C++ STL
- multimap::operator= in C++ STL
- multimap maxsize() in C++ STL
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



