当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ map upper_bound()用法及代码示例


map::upper_bound()是C++ STL中的内置函数,该函数返回一个迭代器,该迭代器指向刚好大于k的下一个元素。如果在参数中传递的键超过了容器中的最大键,则迭代器返回的点将作为key和element = 0指向映射容器中的元素数。

用法:

map_name.upper_bound(key)

参数:该函数接受单个强制性参数键,该键指定返回其upper_bound的元素。


返回值:该函数返回一个迭代器,该迭代器指向刚好大于k的下一个元素。如果在参数中传递的键超过了容器中的最大键,则迭代器返回的点将作为key和element = 0指向映射容器中的元素数。

下面是上述方法的实现:

// C++ function for illustration 
// map::upper_bound() function 
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
    // initialize container 
    map<int, int> mp; 
  
    // insert elements in random order 
    mp.insert({ 12, 30 }); 
    mp.insert({ 11, 10 }); 
    mp.insert({ 15, 50 }); 
    mp.insert({ 14, 40 }); 
  
    // when 11 is present 
    auto it = mp.upper_bound(11); 
    cout << "The upper bound of key 11 is "; 
    cout << (*it).first << " " << (*it).second << endl; 
  
    // when 13 is not present 
    it = mp.upper_bound(13); 
    cout << "The upper bound of key 13 is "; 
    cout << (*it).first << " " << (*it).second << endl; 
  
    // when 17 is exceeds the maximum key, so size 
        // of mp is returned as key and value as 0. 
    it = mp.upper_bound(17); 
    cout << "The upper bound of key 17 is "; 
    cout << (*it).first << " " << (*it).second; 
    return 0; 
}
输出:
The upper bound of key 11 is 12 30
The upper bound of key 13 is 14 40
The upper bound of key 17 is 4 0


相关用法


注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 map upper_bound() function in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。