std::set::lower_bound
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
iterator lower_bound( const Key& key ); |
||
const_iterator lower_bound( const Key& key ) const; |
||
返回一个迭代器指向的第一个元素是“不低于”比
key
.原文:
Returns an iterator pointing to the first element that is not less than
key
.目录 |
[编辑] 参数
key | - | 关键值进行比较的元素
原文: key value to compare the elements to |
[编辑] 返回值
迭代器指向的第一个元素是“少”比
key
。如果没有这样的元素被发现,过去的结束迭代器(见end()
)返回.原文:
iterator pointing to the first element that is not less than
key
. If no such element is found, a past-the-end iterator (see end()
) is returned.[编辑] 复杂性
对数的大小的容器.
原文:
Logarithmic in the size of the container.
[编辑] 另请参阅
回报在一个特定的键匹配的元素 原文: returns range of elements matching a specific key (公共成员函数) | |
返回一个迭代器的第一个元素“更大的”超过一定值 原文: returns an iterator to the first element greater than a certain value (公共成员函数) |