[2 使用C++11改进程序性能] 2.5 unordered container

C++11新增无序容器unordered_map/unordered_multimap和unordered_set/unordered_multiset,因为无需排序,比有序容器map/multimap和set/multiset效率高。

map和set底层实现是红黑树,插入元素时会自动排序;unordered_map和unordered_set底层是哈希表,通过哈希来操作元素,效率更高。

因为无序容器底层实现是哈希表,所以对于自定义的key,需要提供Hash函数和比较函数;对于基本类型已实现,无需提供。

unordered_map的基本用法:

#include <unordered_map> 
#include <vector>
#include <bitset>
#include <string>
#include <utility>

struct Key {
    std::string first;
    std::string second;
};

struct KeyHash {
    std::size_t operator()(const Key& k) const
    {
        return std::hash<std::string>()(k.first) ^
                (std::hash<std::string>()(k.second) << 1);
    }  
};

struct KeyEqual {
    bool operator()(const Key& lhs, const Key& rhs) const
    {
        return lhs.first == rhs.first && lhs.second == rhs.second;
    }
};

int main()
{
    //default constructor: empty map
    std::unordered_map<std::string, std::string> m1;

    //list constructor
    std::unordered_map<int, std::string> m2 =
    {
        {1, "foo"},
        {3, "bar"},
        {2, "baz"},
    };

    //copy constructor
    std::unordered_map<int, std::string> m3 = m2;

    //move constructor
    std::unordered_map<int, std::string> m4 = std::move(m2);

    //range constructor
    std::vector<std::pair<std::bitset<8>, int>> v = { {0x12, 1}, {0x01, -1} };
    std::unordered_map<std::bitset<8>, int> m5(v.begin(), v.end());

    //constructor of a custom type
    std::unordered_map<Key, std::string, KeyHash, KeyEqual> m6 = 
    {
        { {"John", "Doe"}, "example" },
        { {"Mary", "Sue"}, "another" }
    };

    return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值