Skip to content

Commit

Permalink
Update algo.h
Browse files Browse the repository at this point in the history
  • Loading branch information
zxpgo authored Aug 27, 2019
1 parent 3c299d5 commit a287dbb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions MyTinySTL/algo.h
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ ForwardIter adjacent_find(ForwardIter first, ForwardIter last, Compared comp)

/*****************************************************************************************/
// lower_bound
// 在[first, last)中查找第一个不小于 value 的元素的位置
// 在[first, last)中查找第一个大于等于 value 的元素的位置
// 返回一个迭代器,指向在范围内的有序序列中可以插入指定值而不破坏容器顺序的第一个位置
/*****************************************************************************************/
// lbound_dispatch 的 forward_iterator_tag 版本
Expand Down Expand Up @@ -645,7 +645,7 @@ lower_bound(ForwardIter first, ForwardIter last, const T& value, Compared comp)

/*****************************************************************************************/
// upper_bound
// 在[first, last)中查找最后一个不小于 value 的元素的位置
// 在[first, last)中查找第一个大于value 的元素的位置
// 返回一个迭代器,它指向在范围内的有序序列中可以插入指定值而不破坏容器顺序的最后一个位置
/*****************************************************************************************/
// ubound_dispatch 的 forward_iterator_tag 版本
Expand Down

0 comments on commit a287dbb

Please sign in to comment.