设为首页 加入收藏

TOP

C++ STL中的哈希表 hash_map
2015-11-21 01:03:06 来源: 作者: 【 】 浏览:1
Tags:STL 哈希 hash_map

在定义hash_map容器的时候,不仅需要指定键和值的类型,还需要指定hash函数和相等函数

?

(一)hash_map 的hash函数

?

hash< int>到底是什么样子?看看源码:

 
 
struct hash
  
    { size_t operator()(int __x) const { return __x; } };
  

原来是个函数对象。在SGI STL中,提供了以下hash函数:

struct hash
  
   
struct hash
   
     struct hash
    
      struct hash
     
       struct hash
      
        struct hash
       
         struct hash
        
          struct hash
         
           struct hash
          
            struct hash
           
             struct hash
            
           
          
         
        
       
      
     
    
   
  

也就是说,如果你的key使用的是以上类型中的一种,你都可以使用缺省的hash函数。当然你自己也可以定义自己的hash函数。对于自定义变量,你只能如此,例如对于string,就必须自定义hash函数。例如:

struct str_hash{
        size_t operator()(const string& str) const
        {
                unsigned long __h = 0;
                for (size_t i = 0 ; i < str.size() ; i ++)
                __h = 5*__h + str[i];
                return size_t(__h);
        }
};
//如果你希望利用系统定义的字符串hash函数,你可以这样写:
struct str_hash{
        size_t operator()(const string& str) const
        {
                return __stl_hash_string(str.c_str());
        }
};

在声明自己的哈希函数时要注意以下几点:

  1. 使用struct,然后重载operator().返回是size_t参数是你要hash的key的类型。函数是const类型的。

    (二)hash_map 的比较函数

    ?

    在map中的比较函数,需要提供less函数。如果没有提供,缺省的也是less< Key> 。在hash_map中,要比较桶内的数据和key是否相等,因此需要的是是否等于的函数:equal_to< Key> 。先看看equal_to的源码:

    //本代码可以从SGI STL
    //先看看binary_function 函数声明,其实只是定义一些类型而已。
    template 
        
         
    struct binary_function {
            typedef _Arg1 first_argument_type;
            typedef _Arg2 second_argument_type;
            typedef _Result result_type;
    };
    //看看equal_to的定义:
    template 
         
           struct equal_to : public binary_function<_Tp,_Tp,bool> { bool operator()(const _Tp& __x, const _Tp& __y) const { return __x == __y; } };
         
        

    如果你使用一个自定义的数据类型,如struct mystruct, 或者const char* 的字符串,如何使用比较函数?使用比较函数,有两种方法. 第一种是:重载==操作符,利用equal_to;看看下面的例子:

     
    struct mystruct{ int iID; int len; bool operator==(const mystruct & my) const{ return (iID==my.iID) && (len==my.len) ; } };

    这样,就可以使用equal_to< mystruct>作为比较函数了。另一种方法就是使用函数对象。自定义一个比较函数体:

    struct compare_str{
            bool operator()(const char* p1, const char*p2) const{
                    return strcmp(p1,p2)==0;
            }
    };

    有了compare_str,就可以使用hash_map了。

    typedef hash_map
        
         , compare_str> StrIntMap;
    StrIntMap namemap;
    namemap["岳不群"]="华山派掌门人,人称君子剑";
    namemap["张三丰"]="武当掌门人,太极拳创始人";
    namemap["东方不败"]="第一高手,葵花宝典";
        

    (三)如何在hash_map中加入自己定义的类型?

    ?

    #include 
        
         
    #include 
         
           #include 
          
            using namespace std; //define the class class ClassA{ public: ClassA(int a):c_a(a){} int getvalue()const { return c_a;} void setvalue(int a){c_a;} private: int c_a; }; //1 define the hash function struct hash_A{ size_t operator()(const class ClassA & A)const{ // return hash
           
            (classA.getvalue()); return A.getvalue(); } }; 
           
          
         
        

    //2 define the equal function
    struct equal_A{
            bool operator()(const class ClassA & a1, const class ClassA & a2)const{
                    return  a1.getvalue() == a2.getvalue();
            }
    };
    
    int main()
    {
            hash_map
        
          hmap;
            ClassA a1(12);
            hmap[a1]="I am 12";
            ClassA a2(198877);
            hmap[a2]="I am 198877";
            
            cout<
         
          

    ?

    ?

    ?

    ?

    ?

】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
分享到: 
上一篇题目1126:打印极值点下标 下一篇c++访问私有(private)成员变量的..

评论

帐  号: 密码: (新用户注册)
验 证 码:
表  情:
内  容: