数据结构9.哈希表

引言

哈希表(Hash table,也叫散列表),是根据关键码值(Key value)而直接进行访问的数据结构。
我们可以想,数组作为一个连续的储存空间,通过下标就可以很容易的访问到元素内容,可是进行插入删除操作的复杂度就很高了.而链表以其独特的物理存储结构,正好利于插入删除,而访问却差与数组.
那我们可不可以将这两种数据结构结合起来,取其优点,正好,哈希表就可以完成这样的功能.
比如我们有好多个球.我们将不同颜色的分组放入不同的桶,同一种的元素放入同一个桶中,我们再进行插入删除的时候找桶,然后在桶中做操作就好了.
通过上述的简单分析我们可以发现,hash表的出现就是为了解决单一的数组或单一的链表在查询或插入删除上都有各自的短板,而开链式hash表就是为了将两者的优势结合起来,这样就可以实现更高的查询和删除、添加的效率。
也就是说,它通过把关键码值映射到表中一个位置来访问记录,以加快查找的速度。
这个映射函数叫做散列函数,存放记录的数组叫做散列表。
例如:给定表M,存在函数f(key),对任意给定的关键字值key,代入函数后若能得到包含该关键字的记录在表中的地址,则称表M为哈希(Hash)表,函数f(key)为哈希(Hash) 函数。
哈系表结构
像上图这样,就是一个常见的哈系表.数组中的每一个元素都指向一个链表,这种允许多个关键码值散列到一个数组槽中的hash表叫做开链式哈希表。给定任意一个元素,我们都可以通过数组下标快速定位,然后在其对应的链表里也不用遍历太长,就可以得到元素,并且便于插入删除.


一.哈希表

哈希表就是一种以 键-值(key-indexed) 存储数据的结构,我们只要输入待查找的值即key,即可查找到其对应的值。

哈希的思路很简单,如果所有的键都是整数,那么就可以使用一个简单的无序数组来实现:将键作为索引,值即为其对应的值,这样就可以快速访问任意键的值。这是对于简单的键的情况,我们将其扩展到可以处理更加复杂的类型的键。

hash表也有一定的隐患,那就是如果运气很不好,所有的关键值码全部都散列到了一个槽内,那么原本的hash表则又退化为了单链表, 
hash退化所以要尽量避免这种情况的出现,最关键的步骤就是设计好哈希函数,让所有的键值尽量的散列均匀。

二.哈希表的数据结构定义及接口

hash函数的数据结构定义及接口声明

#ifndef  _HASH_H_
#define  _HASH_H_

#include "dlist.h"
#include "tools.h"

#define  TRUE  (1)
#define  FALSE (0)

typedef  unsigned char Boolean         ;
typedef  int (*Hash_func)(const void *); //函数指针,指向参数为const void *的函数;

typedef  struct Hash
{
    int   bucket_size  ; //桶的个数
    int   element_count; //哈希表中所有元素个数
    Dlist **table      ; //数据存储的链式结构

    //hash相关函数
    int (*hash_func)(const void *key);
    //匹配函数
    Boolean (*hash_match)(const void *value1, const void *value2);
    //元素的销毁函数
    void (*hash_free)(void *ptr);
}Hash;

//
Hash    *init_hash(int b_size, Hash_func hash_func); //hash表的初始化
void    destroy_hash(Hash **hash)                  ; //hash表的销毁
Boolean hash_search(Hash *hash, const void *value) ; //hash表寻找元素
Boolean hash_insert(Hash *hash, const void *value) ; //hash表插入元素
Boolean hash_remove(Hash *hash, const void *value) ; //hash表移除元素
int     get_hash_element_count(Hash *hash)         ; //hash表元素个数
void    show_hash_table(Hash *hash)                ; //hash表的显示

//hash函数
int int_hash_func(const void *key);
#endif

三.哈希表的接口实现

我们仍旧通过以前实现的dlist进行封装
详见数据结构4.进一步封装的双向链表

  • 目录结构
.
├── dlist.c
├── dlist.h
├── hash.c
├── hash.h
├── iterator.h
├── main.c
├── tools.c
└── tools.h

0 directories, 8 files
  • hash.c
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "hash.h"
#include "dlist.h"
#include "tools.h"

//hash表的初始化
Hash *init_hash(int b_size, Hash_func hash_func)
{
    if(b_size < 0)
    {
        return NULL;
    }
    Hash *hash = (Hash *)Malloc(sizeof(Hash));
    bzero(hash, sizeof(Hash));

    hash->element_count = 0;     
    //hash初始元素个数为0
    hash->bucket_size = b_size;  
    //指定了初始化桶的个数
    hash->table = (Dlist **)Malloc(sizeof(Dlist *) * b_size);
    bzero(hash->table, sizeof(Dlist *)* b_size);
    //先为各个桶申请地址,但不初始化;
    //后面进行插入时再初始化
    hash->hash_func = hash_func;
    hash->hash_match = NULL;
    hash->hash_free = NULL;
    return hash;
}
//2.哈希表的销毁
void    destroy_hash(Hash **hash)                      //哈希表的销毁
{
   int i = 0;
   int bucket_size = 0;
   Hash *p_hash = NULL;
   //   销毁步骤:
   //1. 销毁每一个桶(双端链表);
   //2. 销毁table;
   //3. 销毁hash;
    if(hash == NULL || *hash == NULL){
        return ;
    }
    p_hash = *hash;
    bucket_size = p_hash->bucket_size;
    for(i = 0; i < bucket_size; ++i){
        destroy_dlist(&(p_hash->table[i]));
    } 
    free(p_hash->table);
    free(p_hash);
    p_hash = NULL;
}
//hash表寻找元素
Boolean hash_search(Hash *hash, const void *value)
{
    if(NULL == hash || NULL == value)
    {
        return FALSE;
    }
    int i = 0;
    int bucket = 0;
    Dlist_node *p_node = NULL;
    //1.通过value和hash_func可以计算value元素应该在哪个桶里
    bucket = hash->hash_func(value) % hash->bucket_size;
    //2.是否存在桶?不存在则返回FALSE
    if(hash->table[bucket] == NULL)
    {
        return FALSE;
    }
    //3.如果存在这样的桶,则遍历链表查找
    for(p_node = hash->table[bucket]->head;
            p_node ; p_node = p_node->next)
    {
        //如果用户设置了匹配方案,则按该方法判断,
        if( hash->hash_match != NULL )
        {
            if(hash->hash_match(p_node->data, value) == TRUE)
            {
                return TRUE;
            }
        }
        else//若用户未设置匹配方法,则直接比较
        {
            if(p_node->data == value)
            {
                return TRUE;
            }
        }
    }
    return FALSE;
}
//hash表插入元素
Boolean hash_insert(Hash *hash, const void *value)
{
    //如果hash表不存在或元素已经存在于桶中,则不进行插入
    if(NULL == hash || NULL == value || TRUE == hash_search(hash, value))
    {
        return FALSE;
    }
    int i = 0;
    int bucket = 0;
    //判断元素所在桶的下标
    bucket = hash->hash_func(value) % hash->bucket_size;
    //插入操作时,如果桶不存在,则初始化这个桶
    if(NULL== hash->table[bucket] )
    {
        hash->table[bucket] = init_dlist();
    }
    //通过尾插将元素插入当前桶
    push_back(hash->table[bucket], (void *)value);
    hash->element_count ++;
    return TRUE;
}
//hash表移除元素
Boolean hash_remove(Hash *hash, const void *value)
{
    //如果hash表不存在或元素不存在于桶中,则不进行删除
    if(NULL == hash || NULL == value || FALSE == hash_search(hash, value))
    {
        return FALSE;
    }
    int i = 0;
    int bucket = 0;
    Dlist_node *p_node = NULL;
    //判断元素所在桶的下标
    bucket = (*(int *)value) % hash->bucket_size;
    //遍历链表查找
    for(p_node = hash->table[bucket]->head;
            p_node ; p_node = p_node->next)
    {
        //如果用户设置了匹配方案,则按该方法判断,
        if( hash->hash_match != NULL )
        {
            if(hash->hash_match(p_node->data, value) == TRUE)
            {   
                //先寻找,再删除
                remove_dlist_node(hash->table[bucket], p_node);
                hash->element_count--;
                return TRUE;
            }
        }
        else
        {
            //若用户未设置匹配方法,则直接比较
            if(p_node->data == value)
            {
                remove_dlist_node(hash->table[bucket], p_node);
                hash->element_count--;
                return TRUE;
            }
        }
    }
    return FALSE;
}
//hash表元素个数
int get_hash_element_count(Hash *hash)
{
    if(NULL == hash)
    {
        return -1;
    }
    return hash->element_count;
}
//hash表的显示
void show_hash_table(Hash *hash)
{
    int i = 0;
    int size = hash->bucket_size;
    if(NULL == hash || hash->element_count == ZERO)
    {
        printf("The hash table is NULL.\n");
        return; 
    }
    for(i = 0; i < size; i++)
    {
        if(hash->table[i] != NULL)
        {
            printf("table[%d]: ", i);
            show_dlist((hash->table[i]), print_int);
        }
    }
}
int int_hash_func(const void *key)
{
    return *(int *)key;
}

四.代码功能测试

  • main.c
#include <stdio.h>
#include <stdlib.h>
#include "tools.h"
#include "hash.h"

#define  MAXSIZE     (100)
#define  HASH_SEARCH (0)
#define  HASH_REMOVE (1)

int main(int argc, char **argv)
{
    Hash *hash = NULL; 
    int *array = (int *)Malloc(sizeof(int) * MAXSIZE);
    int i = 0;    

    for(i = 0; i < MAXSIZE; ++i)
    {
        array[i] = rand() % 1000;
    }

    printf("init_hash(10, int_hash_func):\n");
    hash = init_hash(10, int_hash_func);    //整型hash表初始化

    printf("init_insert:\n");
    for(i = 0; i < MAXSIZE; ++i)
    {
        hash_insert(hash, &array[i]);
    }

    printf("show_hash_table:\n");
    show_hash_table(hash);

    printf("the count: %d\n", get_hash_element_count(hash));

#if HASH_SEARCH
    for(i = 0; i < MAXSIZE; ++i)
    {
        hash_search(hash, &array[i]);
    }
#endif

#if HASH_REMOVE
    printf("hash_remove:\n");
    for(i = 0; i < MAXSIZE/2; ++i)
    {
        hash_remove(hash, &array[i]);
    }
    printf("show_hash_table:\n");
    show_hash_table(hash);
    printf("the count: %d\n", get_hash_element_count(hash));
#endif

    printf("destroy_hash:\n");
    destroy_hash(&hash);    //hash表的销毁

    return 0;
}
root@aemonair:# gcc dlist.c hash.c main.c tools.c -o hash
root@aemonair:# ./hash 
init_hash(10, int_hash_func):
init_insert:
show_hash_table:
table[0]: 690 540 530 370 980 170 750 60 
table[1]: 421 211 11 421 91 281 651 
table[2]: 492 362 172 782 862 802 22 42 862 582 932 12 
table[3]: 383 793 763 123 393 373 413 873 313 43 403 
table[4]: 784 324 84 124 814 434 364 584 754 94 
table[5]: 915 335 135 315 305 925 505 895 545 
table[6]: 886 386 926 426 736 456 526 956 996 336 846 276 676 226 586 
table[7]: 777 27 567 67 167 537 327 857 367 87 
table[8]: 368 58 198 808 178 788 368 
table[9]: 649 59 429 929 69 229 919 729 399 739 539 
the count: 100
hash_remove:
show_hash_table:
table[0]: 980 170 750 60 
table[1]: 91 281 651 
table[2]: 862 582 932 12 
table[3]: 413 873 313 43 403 
table[4]: 84 124 814 434 364 584 754 94 
table[5]: 305 925 505 895 545 
table[6]: 526 956 996 336 846 276 676 226 586 
table[7]: 327 857 367 87 
table[8]: 808 178 788 368 
table[9]: 729 399 739 539 
the count: 50
destroy_hash:

总结

我们可以看到,我们随机生成了100个数字,然后通过hash函数将其分布在不同的桶中.而且每个桶中的元素不同长度.如果分布的越均匀,则让后期的查询效率越高,所以我们一定要设计好hash函数,让关键值能够均匀分布.
哈希查找第一步就是使用哈希函数将键映射成索引。这种映射函数就是哈希函数。如果我们有一个保存0-M数组,那么我们就需要一个能够将任意键转换为该数组范围内的索引(0~M-1)的哈希函数。哈希函数需要易于计算并且能够均匀分布所有键。
比如举个简单的例子,使用手机号码后三位就比前三位作为key更好,因为前三位手机号码的重复率很高。再比如使用身份证号码出生年月位数要比使用前几位数要更好。

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值