Skip to content

Commit

Permalink
修改lower_bound、upper_bound
Browse files Browse the repository at this point in the history
  • Loading branch information
huihut committed Jun 7, 2018
1 parent c5f90d9 commit ab8b43f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions STL/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,8 @@ key_comp|返回容器用于比较键的比较对象的副本
value_comp|返回可用于比较两个元素的比较对象,以获取第一个元素的键是否在第二个元素之前
find|在容器中搜索具有等于 k(参数)的键的元素,如果找到则返回一个迭代器,否则返回 map::end 的迭代器
count|在容器中搜索具有等于 k(参数)的键的元素,并返回匹配的数量
lower_bound|将迭代器返回到下限,键 k(参数)为下界,返回指向键 k(参数)的迭代器
upper_bound|将迭代器返回到上限,键 k(参数)为上界,返回指向键 k(参数)下一个元素的迭代器
lower_bound|返回一个非递减序列 `[first, last)`(参数)中的第一个大于等于值 val(参数)的位置的迭代器
upper_bound|返回一个非递减序列 `[first, last)`(参数)中第一个大于 val(参数)的位置的迭代器
equal_range|获取相同元素的范围,返回包含容器中所有具有与 k(参数)等价的键的元素的范围边界(`pair< map<char,int>::iterator, map<char,int>::iterator >`

## multimap
Expand Down

0 comments on commit ab8b43f

Please sign in to comment.