命名空间
变体
操作

std::map<Key,T,Compare,Allocator>::equal_range

来自 cppreference.com
< cpp‎ | container‎ | map
 
 
 
 
std::pair<iterator, iterator> equal_range( const Key& key );
(1)
std::pair<const_iterator, const_iterator> equal_range( const Key& key ) const;
(2)
template< class K >
std::pair<iterator, iterator> equal_range( const K& x );
(3) (自 C++14 起)
template< class K >
std::pair<const_iterator, const_iterator> equal_range( const K& x ) const;
(4) (自 C++14 起)

返回一个范围,其中包含容器中所有具有给定键的元素。该范围由两个迭代器定义,一个指向第一个不小于key的元素,另一个指向第一个大于key的元素。或者,可以使用lower_bound()获得第一个迭代器,并使用upper_bound()获得第二个迭代器。

1,2) 将键与key进行比较。
3,4) 将键与值x进行比较。只有当限定标识符Compare::is_transparent有效且表示类型时,此重载才会参与重载解析。它允许调用此函数而不构造 Key 的实例。

内容

[编辑] 参数

key - 要与元素进行比较的键值
x - 可以与 Key 进行比较的备用值

[编辑] 返回值

std::pair 包含一对定义所需范围的迭代器:第一个指向第一个不小于key的元素,第二个指向第一个大于key的元素。

如果没有元素不小于key,则返回指向末尾(参见end())的迭代器作为第一个元素。类似地,如果没有元素大于key,则返回指向末尾的迭代器作为第二个元素。

[编辑] 复杂度

容器大小的对数。

注意

特性测试 Std 特性
__cpp_lib_generic_associative_lookup 201304L (C++14) 关联容器中的异构比较查找,用于重载(3,4)

[编辑] 示例

#include <iostream>
#include <map>
 
int main()
{
    const std::map<int, const char*> m
    {
        {0, "zero"},
        {1, "one"},
        {2, "two"}
    };
 
    auto p = m.equal_range(1);
    for (auto& q = p.first; q != p.second; ++q)
        std::cout << "m[" << q->first << "] = " << q->second << '\n';
 
    if (p.second == m.find(2))
        std::cout << "end of equal_range (p.second) is one-past p.first\n";
    else
        std::cout << "unexpected; p.second expected to be one-past p.first\n";
 
    auto pp = m.equal_range(-1);
    if (pp.first == m.begin())
        std::cout << "pp.first is iterator to first not-less than -1\n";
    else
        std::cout << "unexpected pp.first\n";
 
    if (pp.second == m.begin())
        std::cout << "pp.second is iterator to first element greater-than -1\n";
    else
        std::cout << "unexpected pp.second\n";
 
    auto ppp = m.equal_range(3);
    if (ppp.first == m.end())
        std::cout << "ppp.first is iterator to first not-less than 3\n";
    else
        std::cout << "unexpected ppp.first\n";
 
    if (ppp.second == m.end())
        std::cout << "ppp.second is iterator to first element greater-than 3\n";
    else
        std::cout << "unexpected ppp.second\n";
}

输出

m[1] = one
end of equal_range (p.second) is one-past p.first
pp.first is iterator to first not-less than -1
pp.second is iterator to first element greater-than -1
ppp.first is iterator to first not-less than 3
ppp.second is iterator to first element greater-than 3

[编辑] 另请参阅

查找具有特定键的元素
(公共成员函数) [编辑]
(C++20)
检查容器是否包含具有特定键的元素
(公共成员函数) [编辑]
返回与特定键匹配的元素数量
(公共成员函数) [编辑]
返回指向第一个大于给定键的元素的迭代器
(公共成员函数) [编辑]
返回指向第一个不小于给定键的元素的迭代器
(公共成员函数) [编辑]
返回匹配特定键的元素范围
(函数模板) [编辑]