在线文档教程
C++
容器 | Containers

std::unordered_set::equal_range

STD:无序[医]一套:平等[医]范围

std::pair equal_range( const Key& key (since C++11)
std::pair<const_iterator,const_iterator> equal_range( const Key& key ) const;(since C++11)

返回包含带键的所有元素的范围。key在集装箱里。范围由两个迭代器定义,第一个迭代器指向所需范围的第一个元素,第二个迭代器指向范围的最后一个元素。

参数

key-key value to compare the elements to

返回值

std::pair包含一对迭代器,定义所需范围。如果没有这样的元素,请参阅end()%29迭代器作为对的两个元素返回。

复杂性

与键的元素数成线性关系的平均情况key,最坏的情况与容器的大小成线性关系。

另见

findfinds element with specific key (public member function)

© cppreference.com

在CreativeCommonsAttribution下授权-ShareAlike未移植许可v3.0。

http://en.cppreference.com/w/cpp/container/unorder[医]设定/相等[医]范围