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


C++ multimap lower_bound()用法及代码示例


multimap::lower_bound(k)是C++ STL中的内置函数,该函数返回一个迭代器,该迭代器指向容器中的键,该键与参数中传递的k等效。如果在多图容器中不存在k,则该函数返回一个迭代器,该迭代器指向刚好大于k的下一个元素。如果在参数中传递的键超过了容器中的最大键,则迭代器返回的键指向key + 1且element = 0。

用法:

multimap_name.lower_bound(key)

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


返回值:该函数返回指向容器中键的迭代器,该迭代器等效于参数中传递的k。如果在多图容器中不存在k,则该函数返回一个迭代器,该迭代器指向刚好大于k的下一个元素。如果参数中传递的键超过了容器中的最大键,则迭代器返回的键指向key + 1,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


相关用法


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