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