在网上看了一篇《详细解说STL hash_map系列》的文章(http://blog.163.com/liuruigong_lrg/blog/static/27370306200711334341781/),以及一些其他关于STL map和hash_map的资料,总结笔记如下:
1、STL的map底层是用红黑树存储的,查找时间复杂度是log(n)级别;
2、STL的hash_map底层是用hash表存储的,查询时间复杂度是常数级别;
3、什么时候用map,什么时候用hash_map?
这个要看具体的应用,不一定常数级别的hash_map一定比log(n)级别的map要好,hash_map的hash函数以及解决地址冲突等都要耗时,而且众所周知hash表是以空间效率来换时间效率的,因而hash_map的内存消耗肯定要大。一般情况下,如果记录数非常大时,考虑hash_map,查找效率会高很多,如果要考虑内存消耗,则要谨慎使用hash_map。
4、hash_map的适用方法
注意hash_map的定义如下:
template
class hash_map
{
...
}
这是一个模板类,第一、二个参数为键和值得类型。要注意的是第三、四个参数,前者是对键计算hash值用到的hash函数,后者是查找记录时对键进行比较时用到的比较函数,实际上可以看出这里的声明显然不是函数,是两个类,在STL中是定义的结构体来封装的这两个函数。系统内置数据类型,这两个函数是有默认的。如果是用户自定义类型需要提供自定义的包含这两个函数的结构体。
自定义hash函数时,定义一个结构体,名字任意,结构体中重载operator(),参数为自定义类型的对象引用,如下:
struct my_hash{
size_t operator()(const MyClass& obj) const
{
......
}
};
在定义hash_map的时候,将该结构体传给第三个参数即可,如自定义键的类型为MyClass,则hash_map定义如:hash_map
自定义比较函数时,有两种方法,第一种方法很简单,在自定义类型中重载operator==即可,operator==()函数中实现对键值相等的比较。第二种方法与自定义hash函数相似,定义一个结构体,结构体重重载operator(),参数为两个自定义类型的对象引用,在函数中实现对两个对象是否相等的比较,如下:
struct my_compare{
size_t operator()(const MyClass& obj) const
{
......
}
};
在定义hash_map的时候,将该结构体传给第四个参数即可,如自定义键的类型为MyClass,则hash_map定义如:hash_map
============================================================================================================
以下内容为参考原文,引用自:http://blog.163.com/liuruigong_lrg/blog/static/27370306200711334341781/
============================================================================================================
2007-12-03 15:43:41| 分类: c++编程|字号 订阅
岳不群-华山派掌门人,人称君子剑 张三丰-武当掌门人,太极拳创始人 东方不败-第一高手,葵花宝典 ...
#include
速度永远都满足不了现实的需求。如果有100万条记录,我需要频繁进行搜索时,20次比较也会成为瓶颈,要是能降到一次或者两次比较是否有可能?而且当记录数到200万的时候也是一次或者两次的比较,是否有可能?而且还需要和map一样的方便使用。
答案是肯定的。这时你需要has_map. 虽然hash_map目前并没有纳入C++ 标准模板库中,但几乎每个版本的STL都提供了相应的实现。而且应用十分广泛。在正式使用hash_map之前,先看看hash_map的原理。
hash_map基于hash table(哈希表)。 哈希表最大的优点,就是把数据的存储和查找消耗的时间大大降低,几乎可以看成是常数时间;而代价仅仅是消耗比较多的内存。然而在当前可利用内存越来越多的 情况下,用空间换时间的做法是值得的。另外,编码比较容易也是它的特点之一。
其基本原理是:使用一个下标范围比较大的数组来存储元素。可以设计一个函数(哈希函数,也叫做散列函数),使得每个元素的关键字都与一个函数值(即数组下 标,hash值)相对应,于是用这个数组单元来存储这个元素;也可以简单的理解为,按照关键字为每一个元素“分类”,然后将这个元素存储在相应“类”所对 应的地方,称为桶。
但是,不能够保证每个元素的关键字与函数值是一一对应的,因此极有可能出现对于不同的元素,却计算出了相同的函数值,这样就产生了“冲突”,换句话说,就是把不同的元素分在了相同的“类”之中。 总的来说,“直接定址”与“解决冲突”是哈希表的两大特点。
hash_map,首先分配一大片内存,形成许多桶。是利用hash函数,对key进行映射到不同区域(桶)进行保存。其插入过程是:
由此可见,要实现哈希表, 和用户相关的是:hash函数和比较函数。这两个参数刚好是我们在使用hash_map时需要指定的参数。
#include#include using namespace std; int main(){ hash_map<int, string> mymap; mymap[9527]="唐伯虎点秋香"; mymap[1000000]="百万富翁的生活"; mymap[10000]="白领的工资底线"; ... if(mymap.find(10000) != mymap.end()){ ... }
template <class _Key, class _Tp, class _HashFcn = hash<_Key>, class _EqualKey = equal_to<_Key>, class _Alloc = __STL_DEFAULT_ALLOCATOR(_Tp) > class hash_map { ... }
... hash_map<int, string> mymap; //等同于: hash_map<int, string, hash<int>, equal_to<int> > mymap;
struct hash<int> { size_t operator()(int __x) const { return __x; } };
struct hash<char*> struct hash<const char*> struct hash<char> struct hash<unsigned char> struct hash<signed char> struct hash<short> struct hash<unsigned short> struct hash<int> struct hash<unsigned int> struct hash<long> struct hash<unsigned long>
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 return __stl_hash_string(str.c_str()); } };
现在可以对开头的"岳不群"进行哈希化了 . 直接替换成下面的声明即可:
mapnamemap; //改为: hash_map namemap;
你或许会问:比较函数呢?别着急,这里就开始介绍hash_map中的比较函数。
//本代码可以从SGI STL //先看看binary_function 函数声明,其实只是定义一些类型而已。 template <class _Arg1, class _Arg2, class _Result> struct binary_function { typedef _Arg1 first_argument_type; typedef _Arg2 second_argument_type; typedef _Result result_type; }; //看看equal_to的定义: template <class _Tp> struct equal_to : public binary_function<_Tp,_Tp,bool> { bool operator()(const _Tp& __x, const _Tp& __y) const { return __x == __y; } };
struct mystruct{ int iID; int len; bool operator==(const mystruct & my) const{ return (iID==my.iID) && (len==my.len) ; } };
struct compare_str{ bool operator()(const char* p1, const char*p2) const{ return strcmp(p1,p2)==0; } };
typedef hash_map<const char*, string, hash<const char*>, compare_str> StrIntMap; StrIntMap namemap; namemap["岳不群"]="华山派掌门人,人称君子剑"; namemap["张三丰"]="武当掌门人,太极拳创始人"; namemap["东方不败"]="第一高手,葵花宝典";
现在知道如何选择了吗?权衡三个因素: 查找速度, 数据量, 内存使用。
这里还有个关于hash_map和map的小故事,看看:http://dev.csdn.net/Develop/article/14/14019.shtm
-bash-2.05b$ cat my.cpp #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_maphmap; ClassA a1(12); hmap[a1]="I am 12"; ClassA a2(198877); hmap[a2]="I am 198877"; cout< return 0; } -bash-2.05b$ make my c++ -O -pipe -march=pentiumpro my.cpp -o my -bash-2.05b$ ./my I am 12 I am 198877
typedef mapKeyMap;
typedef hash_mapKeyMap;