multimap::upper_bound(k)是C++ STL中的內置函數,該函數返回一個迭代器,該迭代器指向剛好大於k的下一個元素。如果參數中傳遞的鍵超過了容器中的最大鍵,則迭代器返回的鍵指向key + 1,element = 0。
用法:
multimap_name.upper_bound(key)
參數:該函數接受單個強製性參數鍵,該鍵指定返回其lower_bound的元素。
返回值:該函數返回一個迭代器,該迭代器指向剛好大於k的下一個元素。如果參數中傳遞的鍵超過了容器中的最大鍵,則迭代器返回的鍵指向key + 1,element = 0。
// C++ function for illustration
// multimap::upper_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.upper_bound(2);
cout << "The upper bound of key 2 is ";
cout << (*it).first << " " << (*it).second << endl;
// when 3 is not present
it = mp.upper_bound(3);
cout << "The upper bound of key 3 is ";
cout << (*it).first << " " << (*it).second << endl;
// when 5 is exceeds the maximum key
it = mp.upper_bound(5);
cout << "The upper bound of key 5 is ";
cout << (*it).first << " " << (*it).second;
return 0;
}
輸出:
The upper bound of key 2 is 1 50 The upper bound of key 3 is 4 50 The upper bound of key 5 is 6 0
相關用法
- C++ multimap::cbegin()、multimap::cend()用法及代碼示例
- C++ multimap::crbegin()、multimap::crend()用法及代碼示例
- C++ multimap get_allocator()用法及代碼示例
- C++ multimap lower_bound()用法及代碼示例
- C++ multimap size()用法及代碼示例
- C++ multimap value_comp()用法及代碼示例
- C++ multimap clear()用法及代碼示例
- C++ multimap swap()用法及代碼示例
- C++ multimap empty()用法及代碼示例
- C++ multimap::begin()、multimap::end()用法及代碼示例
- C++ multimap key_comp用法及代碼示例
- C++ multimap key_comp()用法及代碼示例
- C++ multimap equal_range()用法及代碼示例
- C++ multimap::operator=用法及代碼示例
- C++ multimap::swap()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 multimap upper_bound() function in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。