hash_map/unordered_map原理和使用整理

目录(?)[+]

1.结论

运行效率方面:unordered_map最高,hash_map其次,而map效率最低单提供了有序的序列。

占用内存方面:hash_map内存占用最低,unordered_map其次(数量少时优于hash_map),而map占用最高。

需要无序容器时候用unordered_map,有序容器时候用map

2.原理

map的内部实现是二叉平衡树(红黑树);hash_map内部是一个hash_table一般是由一个大vector,vector元素节点可挂接链表来解决冲突,来实现.

hash_map 其插入过程是:
  1. 得到key
  2. 通过hash函数得到hash值
  3. 得到桶号(一般都为hash值对桶数求模)
  4. 存放key和value在桶内。

其取值过程是:
  1. 得到key
  2. 通过hash函数得到hash值
  3. 得到桶号(一般都为hash值对桶数求模)
  4. 比较桶的内部元素是否与key相等,若都不相等,则没有找到。
  5. 取出相等的记录的value。

hash_map中直接地址用hash函数生成,解决冲突,用比较函数解决。

3.性能特点

非频繁的查询用map比较稳定;频繁的查询用hash_map效率会高一些,c++11中的unordered_map查询效率会更高一些但是内存占用比hash_map稍微大点。unordered_map 就是 boost 里面的 hash_map 实现。

其实,stl::map对于与java中的TreeMap,而boost::unordered_map对应于java中的HashMap。
python中的map就是hashmap实现的,所以查询效率会比C++的map查询快。(java,python官方版的虚拟机都是用C语言实现的,所以内部的思想和方法都是通用的。)

若考虑有序,查询速度稳定,容器元素量少于1000,非频繁查询那么考虑使用map。
若非常高频查询(100个元素以上,unordered_map都会比map快),内部元素可非有序,数据大超过1k甚至几十万上百万时候就要考虑使用unordered_map
(元素上千万上亿时4GB的内存就要担心内存不足了,需要数据库存储过程挪动到磁盘中)。
hash_map相比unordered_map就是千万级别以上内存占用少15MB,上亿时候内存占用少300MB,百万以下都是unordered_map占用内存少,
且unordered_map插入删除相比hash_map都快一倍,查找效率相比hash_map差不多,或者只快了一点约1/50到1/100。
综合非有序或者要求稳定用map,都应该使用unordered_map,set类型也是类似的。
unordered_map 查找效率快五倍,插入更快,节省一定内存。如果没有必要排序的话,尽量使用 hash_map(unordered_map 就是 boost 里面的 hash_map 实现)

4.使用unordered_map

unordered_map需要重载hash_value函数,并重载operator ==运算符。
详细参考见(感谢orzlzro写的这么好的文章):

5.使用Hash_map需要注意的问题

/* *
 *\author peakflys
 *\brief 演示hash_map键值更改造成的问题
 
*/
#include <iostream>
#include <ext/hash_map>
struct Unit
{
     char name[32];
    unsigned  int score;
    Unit( const  char *_name, const unsigned  int _score) : score(_score)
    {   
        strncpy(name,_name,32);
    }   
};
int main()
{
    typedef __gnu_cxx::hash_map< char*,Unit*> uHMap;
    typedef uHMap::value_type hmType;
    typedef uHMap::iterator hmIter;
    uHMap hMap;
    Unit *unit1 =  new Unit("peak",100);
    Unit *unit2 =  new Unit("Joey",20);
    Unit *unit3 =  new Unit("Rachel",40);
    Unit *unit4 =  new Unit("Monica",90);
    hMap[unit1->name] = unit1;
    hMap[unit2->name] = unit2;
    hMap.insert(hmType(unit3->name,unit3));
    hMap.insert(hmType(unit4->name,unit4));
     for(hmIter it=hMap.begin();it!=hMap.end();++it)
    {   
        std::cout<<it->first<<"\t"<<it->second->score<<std::endl; // 正常操作
    }   
     for(hmIter it=hMap.begin();it!=hMap.end();++it)
   {
        Unit *unit = it->second;
        //hMap.erase(it++);
        delete unit;  // delete释放节点内存,但是hMap没有除去,造成hMap内部错乱,有可能宕机
    } 
     hmIter it = hMap.begin();
    strncpy(it->first,"cc",32); // 强行更改
     for(hmIter it=hMap.begin();it!=hMap.end();++it)
    {   
        std::cout<<it->first<<"\t"<<it->second->score<<std::endl; // 死循环,原因参加上面++操作说明
/*operator++ 操作是从_M_cur开始,优先_M_cur->_M_next,为空时遍历vector直至找到一个_M_cur不为空的节点,遍历vector 时需要取它对应的桶位置(参砍上面hash_map取值过程),_M_bkt_num_key(key)中key的值是修改后的值,假如你改的键值,通过 此函数得到的桶位置在你当前元素之前,这样就造成了死循环.
*/
    }   
     return 0;

6.VC下参考实例

[cpp]  view plain  copy
 print ? 在CODE上查看代码片 派生到我的代码片
  1. #include "stdafx.h"  
  2.   
  3. // 存放过程:key->hash函数->hash值对桶数求模得到桶号(桶有值则解决冲突),存放key和value在桶内  
  4. // 取回过程:key->hash函数->hash值对桶数求模得到桶号(桶有值则解决冲突),比较桶内的key是否相等,  
  5. // 若不相等则返回空迭代器,否则返回迭代器。  
  6.   
  7. // 1.hash_map为下面类型的key定义了hash寻址函数(用于从key到hash值)和哈希比较函数(用于解决冲突)。  
  8. //struct hash<char*>  
  9. //struct hash<const char*>  
  10. //struct hash<char>   
  11. //struct hash<unsigned char>   
  12. //struct hash<signed char>  
  13. //struct hash<short>  
  14. //struct hash<unsigned short>   
  15. //struct hash<int>   
  16. //struct hash<unsigned int>  
  17. //struct hash<long>   
  18. //struct hash<unsigned long>   
  19. // 内建的类型直接 hash_map<int, string> mymap;像普通map一样使用即可。  
  20.   
  21. // 2.自定义hash函数和比较函数  
  22. //在声明自己的哈希函数时要注意以下几点:  
  23.   
  24. //使用struct,然后重载operator().  
  25. //返回是size_t  
  26. //参数是你要hash的key的类型。  
  27. //函数是const类型的。   
  28.   
  29. // 定义自己的比较函数:  
  30. //使用struct,然后重载operator().  
  31. //返回是bool  
  32. //参数是你要hash的key的类型的两个常量参数,用于比较。  
  33. //函数是const类型的。  
  34.   
  35. // 自定义hash函数和比较函数的使用:  
  36. // hash_map<ClassA, string, hash_A, equal_A> hmap;  
  37.   
  38. // 3.hash_map使用的常用函数  
  39.   
  40. //hash_map的函数和map的函数差不多。具体函数的参数和解释,请参看:STL 编程手册:Hash_map,这里主要介绍几个常用函数。  
  41. //  
  42. //hash_map(size_type n) 如果讲究效率,这个参数是必须要设置的。n 主要用来设置hash_map 容器中hash桶的个数。  
  43. //桶个数越多,hash函数发生冲突的概率就越小,重新申请内存的概率就越小。n越大,效率越高,但是内存消耗也越大。  
  44. //  
  45. //const_iterator find(const key_type& k) const. 用查找,输入为键值,返回为迭代器。  
  46. //  
  47. //data_type& operator[](const key_type& k) . 这是我最常用的一个函数。因为其特别方便,可像使用数组一样使用。  
  48. //不过需要注意的是,当你使用[key ]操作符时,如果容器中没有key元素,这就相当于自动增加了一个key元素。  
  49. //因此当你只是想知道容器中是否有key元素时,你可以使用find。如果你希望插入该元素时,你可以直接使用[]操作符。  
  50. //  
  51. //insert 函数。在容器中不包含key值时,insert函数和[]操作符的功能差不多。但是当容器中元素越来越多,  
  52. //每个桶中的元素会增加,为了保证效率,hash_map会自动申请更大的内存,以生成更多的桶。因此在insert以后,  
  53. //以前的iterator有可能是不可用的。  
  54. //  
  55. //erase 函数。在insert的过程中,当每个桶的元素太多时,hash_map可能会自动扩充容器的内存。  
  56. //但在sgi stl中是erase并不自动回收内存。因此你调用erase后,其他元素的iterator还是可用的。   
  57.   
  58. #include <hash_map>  
  59. #include <string>  
  60. #include <iostream>  
  61. using namespace std;  
  62. using namespace stdext;   
  63. //define the class  
  64. /*-------------------------------------------*/    
  65. /*函数类  
  66.  *作为hash_map的hash函数   
  67.  *string没有默认的hash函数   
  68.  */     
  69. class str_hash{    
  70.       public:    
  71.        size_t operator()(const string& str) const    
  72.         {    
  73.                 unsigned long __h = 0;    
  74.                 for (size_t i = 0 ; i < str.size() ; i ++)    
  75.                 __h = 5*__h + str[i];    
  76.                 return size_t(__h);    
  77.         }    
  78. };  
  79.   
  80. /*-------------------------------------------*/    
  81. /*函数类   
  82.  *作为hash_map的比较函数 )  
  83.  *(查找的时候不同的key往往可能对用到相同的hash值  
  84. */     
  85. class str_compare    
  86. {    
  87.       public:    
  88.              bool operator()(const string& str1,const string& str2)const    
  89.              {return   str1==str2;}    
  90. };    
  91.   
  92. struct CharLess : public binary_function<const char*, const char*, bool>  
  93. {  
  94. public:  
  95.     result_type operator()(const first_argument_type& _Left, const second_argument_type& _Right) const  
  96.     {  
  97.         return(strcmp(_Left, _Right) < 0 ? true : false);  
  98.     }  
  99. };    
  100.   
  101. int main()  
  102. {  
  103.     // 内建类型  
  104.     hash_map<int,string> myHashMap;  
  105.     myHashMap[0] = "JesseCen";  
  106.     myHashMap[1] = "OZZ";  
  107.     hash_map<int,string>::iterator itrHash = myHashMap.find(0);  
  108.     if(itrHash != myHashMap.end())  
  109.     {  
  110.         cout<<"My Name is:"<<itrHash->second.c_str()<<endl;  
  111.     }  
  112.   
  113.     // VC下自定义类型  
  114.     hash_map<const char*, int, hash_compare<const char*, CharLess> > CharHash;  
  115.     CharHash["a"] = 123;  
  116.     CharHash["b"] = 456;   
  117.     hash_map<const char*, int, hash_compare<const char*, CharLess> >::iterator itrChar = CharHash.find("b");  
  118.     if( itrChar != CharHash.end())  
  119.     {  
  120.         cout<<"The find number is:"<< itrChar->second<<endl;  
  121.     }  
  122.   
  123.     return 0;  
  124. }  
参考文章:
http://blog.chinaunix.net/uid-20384806-id-3055333.html
http://blog.csdn.net/whizchen/article/details/9286557
http://blog.csdn.net/gamecreating/article/details/7698719
http://www.cppblog.com/peakflys/archive/2012/07/24/184855.aspx
  • 0
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值