c++11 标准模板(STL)(std::unordered_multimap)(十)

定义于头文件 <unordered_map>
template<

    class Key,
    class T,
    class Hash = std::hash<Key>,
    class KeyEqual = std::equal_to<Key>,
    class Allocator = std::allocator< std::pair<const Key, T> >

> class unordered_multimap;
(1) (C++11 起)
namespace pmr {

    template <class Key, class T,
              class Hash = std::hash<Key>,
              class Pred = std::equal_to<Key>>
    using unordered_multimap = std::unordered_multimap<Key, T, Hash, Pred,
                                   std::pmr::polymorphic_allocator<std::pair<const Key,T>>>;

}
(2) (C++17 起)

unordered_multimap 是无序关联容器,支持等价的关键(一个 unordered_multimap 可含有每个关键值的多个副本)和将关键与另一类型的值关联。 unordered_multimap 类支持向前迭代器。搜索、插入和移除拥有平均常数时间复杂度。

元素在内部不以任何特定顺序排序,而是组织到桶中。元素被放进哪个桶完全依赖于其关键的哈希。这允许到单独元素的快速访问,因为哈希一旦计算,则它指代元素被放进的准确的桶。

不要求此容器的迭代顺序稳定(故例如 std::equal 不能用于比较二个 std::unordered_multimap ),除了关键比较等价(以 key_eq() 为比较器比较相等)的每组元素在迭代顺序中组成相接的子范围,它亦可用 equal_range() 访问。


查找

返回匹配特定键的元素数量

std::unordered_multimap<Key,T,Hash,KeyEqual,Allocator>::count

size_type count( const Key& key ) const;

(1) (C++11 起)

template< class K >
size_type count( const K& x ) const;

(2) (C++20 起)

1) 返回拥有比较等于指定参数 key 的关键的元素数。

2) 返回键比较等价于指定参数 x 的元素数。此重载仅若有限定 Hash::transparent_key_equal 合法并指代类型才参与重载决议。这假设能用 KKey 类型一起调用这种 Hash ,还有其 key_equal 是通透的,进而允许不用构造 Key 的实例就调用此函数。

参数

key - 要计量等价元素数的键值
x - 能通透地与键比较的任何类型值

返回值

1) 拥有关键 key 的元素数。

2) 键比较等价于 x 的元素数。

复杂度

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

寻找带有特定键的元素

std::unordered_multimap<Key,T,Hash,KeyEqual,Allocator>::find

iterator find( const Key& key );

(1)

const_iterator find( const Key& key ) const;

(2)

template< class K > iterator find( const K& x );

(3) (C++20 起)

template< class K > const_iterator find( const K& x ) const;

(4) (C++20 起)

1,2) 寻找键等于 key 的的元素。

3,4) 寻找键比较等价于值 x 的元素。此重载仅若有限定 Hash::transparent_key_equal 合法并指代类型才参与重载决议。这假设能用 KKey 类型一起调用这种 Hash ,还有其 key_equal 是通透的,进而允许不用构造 Key 的实例就调用此函数。

参数

key - 要搜索的元素键值
x - 能通透地与键比较的任何类型值

返回值

指向键等于 key 的元素的迭代器。若找不到这种元素,则返回尾后(见 end() )迭代器。

复杂度

平均为常数,最坏情况与容器大小成线性。

返回匹配特定键的元素范围

std::unordered_multimap<Key,T,Hash,KeyEqual,Allocator>::equal_range

std::pair<iterator,iterator> equal_range( const Key& key );

(1) (C++11 起)

std::pair<const_iterator,const_iterator> equal_range( const Key& key ) const;

(2) (C++11 起)

template< class K >
std::pair<iterator,iterator> equal_range( const K& x );

(3) (C++20 起)

template< class K >
std::pair<const_iterator,const_iterator> equal_range( const K& x ) const;

(4) (C++20 起)

1,2) 返回容器中所有键等于 key 的元素范围。范围以二个迭代器定义,第一个指向所需范围的首元素,而第二个指向范围的尾后一位元素。

3,4) 返回含有容器中所有键等价于 x 的元素的范围。此重载仅若有限定 Hash::transparent_key_equal 合法并指代类型才参与重载决议。这假设能用 KKey 类型一起调用这种 Hash ,还有其 key_equal 是通透的,进而允许不用构造 Key 的实例就调用此函数。

参数

key - 要与元素比较的键值
x - 任何能与键通透比较的类型的值

返回值

含一对定义所需范围的迭代器的 std::pair 。若无这种元素,则将尾后(见 end() )迭代器作为 pair 的两个元素返回。

复杂度

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

调用示例

#include <iostream>
#include <forward_list>
#include <string>
#include <iterator>
#include <algorithm>
#include <functional>
#include <unordered_map>
#include <time.h>

using namespace std;

struct Cell
{
    int x;
    int y;

    Cell() = default;
    Cell(int a, int b): x(a), y(b) {}

    Cell &operator +=(const Cell &cell)
    {
        x += cell.x;
        y += cell.y;
        return *this;
    }

    Cell &operator +(const Cell &cell)
    {
        x += cell.x;
        y += cell.y;
        return *this;
    }

    Cell &operator *(const Cell &cell)
    {
        x *= cell.x;
        y *= cell.y;
        return *this;
    }

    Cell &operator ++()
    {
        x += 1;
        y += 1;
        return *this;
    }


    bool operator <(const Cell &cell) const
    {
        if (x == cell.x)
        {
            return y < cell.y;
        }
        else
        {
            return x < cell.x;
        }
    }

    bool operator >(const Cell &cell) const
    {
        if (x == cell.x)
        {
            return y > cell.y;
        }
        else
        {
            return x > cell.x;
        }
    }

    bool operator ==(const Cell &cell) const
    {
        return x == cell.x && y == cell.y;
    }
};

struct myCompare
{
    bool operator()(const int &a, const int &b)
    {
        return a < b;
    }
};

std::ostream &operator<<(std::ostream &os, const Cell &cell)
{
    os << "{" << cell.x << "," << cell.y << "}";
    return os;
}

std::ostream &operator<<(std::ostream &os, const std::pair<Cell, string> &pCell)
{
    os << pCell.first << "-" << pCell.second;
    return os;
}

struct CHash
{
    size_t operator()(const Cell& cell) const
    {
        size_t thash = std::hash<int>()(cell.x) | std::hash<int>()(cell.y);
//        std::cout << "CHash: " << thash << std::endl;
        return thash;
    }
};

struct CEqual
{
    bool operator()(const Cell &a, const Cell &b) const
    {
        return a.x == b.x && a.y == b.y;
    }
};

int main()
{
    auto generate = []()
    {
        int n = std::rand() % 10 + 110;
        Cell cell{n, n};
        return std::pair<Cell, string>(cell, std::to_string(n));
    };

    std::unordered_multimap<Cell, string, CHash, CEqual> unordered_multimap1;
    while (unordered_multimap1.size() < 6)
    {
        //若容器尚未含有带等价关键的元素,则插入元素到容器中。1-2) 插入 value 。
        unordered_multimap1.insert(generate());
    }

    std::cout << "unordered_multimap1:   ";
    std::copy(unordered_multimap1.begin(), unordered_multimap1.end(),
              std::ostream_iterator<std::pair<Cell, string>>(std::cout, " "));
    std::cout << std::endl;
    std::cout << std::endl;

    for (std::unordered_multimap<Cell, string, CHash, CEqual>::const_iterator cit =
                unordered_multimap1.cbegin(); cit != unordered_multimap1.end(); cit++)
    {
        //1) 返回拥有比较等于指定参数 key 的关键的元素数,因为此容器不允许重复故为 1 或 0 。
        std::cout << "unordered_multimap1 count(" << cit->first << ") :    "
                  << unordered_multimap1.count(cit->first) << std::endl;
    }
    std::cout << std::endl;


    for (std::unordered_multimap<Cell, string, CHash, CEqual>::const_iterator cit =
                unordered_multimap1.cbegin(); cit != unordered_multimap1.end(); cit++)
    {
        //1,2) 寻找键等于 key 的的元素。
        std::unordered_multimap<Cell, string, CHash, CEqual>::const_iterator fit =
            unordered_multimap1.find(cit->first);
        std::cout << "unordered_multimap1 find(" << cit->first << ") :    " << *fit << std::endl;
    }
    std::cout << std::endl;


    for (std::unordered_multimap<Cell, string, CHash, CEqual>::const_iterator cit =
                unordered_multimap1.cbegin(); cit != unordered_multimap1.end(); cit++)
    {
        //1,2) 返回容器中所有键等于 key 的元素范围。
        //范围以二个迭代器定义,第一个指向所需范围的首元素,而第二个指向范围的尾后一位元素。
        std::pair<std::unordered_multimap<Cell, string, CHash, CEqual>::const_iterator,
            std::unordered_multimap<Cell, string, CHash, CEqual>::const_iterator> pit =
                unordered_multimap1.equal_range(cit->first);
        std::cout << "unordered_multimap1 equal_range(" << cit->first << ") :  ";
        for (std::unordered_multimap<Cell, string, CHash, CEqual>::const_iterator it
                = pit.first; it != pit.second; it++)
        {
            std::cout << *it << " ";
        }
        std::cout << std::endl;
    }
    std::cout << std::endl;

    return 0;
}

输出

猜你喜欢

转载自blog.csdn.net/qq_40788199/article/details/129896132