C++官网参考链接:https://cplusplus.com/reference/map/map/lower_bound/
公有成员函数
<map>
std::map::lower_bound
iterator lower_bound (const key_type& k);
const_iterator lower_bound (const key_type& k) const;
返回指向下界的iterator
返回一个iterator,指向容器中键不位于k前面的第一个元素(即,键与k相等或位于k后面)。
该函数使用其内部比较对象(comparison object)(key_comp)来确定这一点,返回一个指向key_comp(element_key,k)返回false的第一个元素的iterator。
如果map类用默认比较类型(