博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
stl map中的lower_bound和 upper_bound
阅读量:6156 次
发布时间:2019-06-21

本文共 3397 字,大约阅读时间需要 11 分钟。

map中的lower_bound和upper_bound的意思其实很简单,就两句话:

map::lower_bound(key):返回map中第一个大于或等于key的迭代器指针

map::upper_bound(key):返回map中第一个大于key的迭代器指针

所以,理解这两个函数请不要按照字面意义思考太复杂,因为仅仅是不小于(lower_bound)和大于(upper_bound)这么简单。

 

看两个msdn里的例子

1 // map_upper_bound.cpp 2 // compile with: /EHsc 3 #include  4 #include 
5 6 int main( ) 7 { 8 using namespace std; 9 map
m1;10 map
:: const_iterator m1_AcIter, m1_RcIter;11 typedef pair
Int_Pair;12 13 m1.insert ( Int_Pair ( 1, 10 ) );14 m1.insert ( Int_Pair ( 2, 20 ) );15 m1.insert ( Int_Pair ( 3, 30 ) );16  17  // 返回m1中第一个key值大于2的元素的迭代器,当然是<3,30>18  m1_RcIter = m1.upper_bound( 2 );19 cout << "The first element of map m1 with a key "20 << "greater than 2 is: "21 << m1_RcIter -> second << "." << endl;22 23 // If no match is found for the key, end is returned24 m1_RcIter = m1. upper_bound ( 4 );25 26 // m1中key值并没有大于或等于4的 27 if ( m1_RcIter == m1.end( ) )28 cout << "The map m1 doesn't have an element "29 << "with a key greater than 4." << endl;30 else31 cout << "The element of map m1 with a key > 4 is: "32 << m1_RcIter -> second << "." << endl;33 34 // The element at a specific location in the map can be found 35 // using a dereferenced iterator addressing the location36 m1_AcIter = m1.begin( );37 m1_RcIter = m1. upper_bound ( m1_AcIter -> first );38 cout << "The 1st element of m1 with a key greater than\n"39 << "that of the initial element of m1 is: "40 << m1_RcIter -> second << "." << endl;41 }

 

The first element of map m1 with a key greater than 2 is: 30.The map m1 doesn't have an element with a key greater than 4.The 1st element of m1 with a key greater thanthat of the initial element of m1 is: 20.
1 // map_lower_bound.cpp 2 // compile with: /EHsc 3 #include  4 #include 
5 6 int main( ) 7 { 8 using namespace std; 9 map
m1;10 map
:: const_iterator m1_AcIter, m1_RcIter;11 typedef pair
Int_Pair;12 13 m1.insert ( Int_Pair ( 1, 10 ) );14 m1.insert ( Int_Pair ( 2, 20 ) );15 m1.insert ( Int_Pair ( 3, 30 ) );16   //key值大于等于2的是<2,20>17 m1_RcIter = m1.lower_bound( 2 );18 cout << "The first element of map m1 with a key of 2 is: "19 << m1_RcIter -> second << "." << endl;20 21 // If no match is found for this key, end( ) is returned22 m1_RcIter = m1. lower_bound ( 4 );23 24 if ( m1_RcIter == m1.end( ) )25 cout << "The map m1 doesn't have an element "26 << "with a key of 4." << endl;27 else28 cout << "The element of map m1 with a key of 4 is: "29 << m1_RcIter -> second << "." << endl;30 31 // The element at a specific location in the map can be found 32 // using a dereferenced iterator addressing the location33 m1_AcIter = m1.end( );34 m1_AcIter--;35 m1_RcIter = m1. lower_bound ( m1_AcIter -> first );36 cout << "The element of m1 with a key matching "37 << "that of the last element is: "38 << m1_RcIter -> second << "." << endl;39 }

 

The first element of map m1 with a key of 2 is: 20.

The map m1 doesn't have an element with a key of 4.

The element of m1 with a key matching that of the last element is: 30.

转载地址:http://bxifa.baihongyu.com/

你可能感兴趣的文章
Microsoft Licenses Flash Lite for Windows Mobile Users
查看>>
HDOJ 2020 绝对值排序
查看>>
HDOJ/HDU 2560 Buildings(嗯~水题)
查看>>
Maven编译时跳过Test
查看>>
Spring Boot 整合Spring Security 和Swagger2 遇到的问题小结
查看>>
[20170628]12C ORA-54032.txt
查看>>
linux运维人员的成功面试总结案例分享
查看>>
Windows DHCP Server基于MAC地址过滤客户端请求实现IP地址的分配
查看>>
命令查询每个文件文件数
查看>>
《跟阿铭学Linux》第8章 文档的压缩与打包:课后习题与答案
查看>>
RAC表决磁盘管理和维护
查看>>
Apache通过mod_php5支持PHP
查看>>
发布一个TCP 吞吐性能测试小工具
查看>>
java学习:jdbc连接示例
查看>>
Silverlight 如何手动打包xap
查看>>
建筑电气暖通给排水协作流程
查看>>
linux 编码转换
查看>>
POJ-2287 Tian Ji -- The Horse Racing 贪心规则在动态规划中的应用 Or 纯贪心
查看>>
Windows8/Silverlight/WPF/WP7/HTML5周学习导读(1月7日-1月14日)
查看>>
关于C#导出 文本文件
查看>>