HashTable实现

Hash函数,摘自glib中
typedef char   gchar;  
typedef short  gshort;  
typedef long   glong;  
typedef int    gint;  
typedef gint   gboolean;  
typedef unsigned char   guchar;  
typedef unsigned short  gushort;  
typedef unsigned long   gulong;  
typedef unsigned int    guint;  
typedef float           gfloat;  
typedef double          gdouble;  
/* Define min and max constants for the fixed size numerical types */  
#define G_MININT8       ((gint8)0x80)  
#define G_MAXINT8       ((gint8)0x7f)  
#define G_MAXUINT8      ((gint8)0xff)  
#define G_MININT16      ((gint16)0x8000)  
#define G_MAXINT16      ((gint16)0x7fff)  
#define G_MAXUINT16     ((guint16)0xffff)  
#define G_MININT32      ((gint32)0x80000000)  
#define G_MAXINT32      ((gint32)0x7fffffff)  
#define G_MAXUINT32     ((guint32)0xffffffff)  
#define G_MININT64      ((gint64)G_GINT64_CONSTANT(0x8000000000000000))  
#define G_MAXINT64      G_GINT64_CONSTANT(0x7fffffffffffffff)  
#define G_MAXUINT64     G_GINT64_CONSTANT(0xffffffffffffffffU)  
typedef void* gpointer;  
typedef const void *gconstpointer;  
gboolean g_int_equal(gconstpointer v1, gconstpointer v2)  
{  
    return *((const gint*)v1) == *((const gint*)v2);  
}  
guint g_int_hash(gconstpointer v)  
{  
    return *(const gint*)v;  
}  
gboolean g_int64_equal(gconstpointer v1, gconstpointer v2)  
{  
    return *((const gint64*)v1) == *((const gint64*)v2);  
}  
guint g_int64_hash(gconstpointer v)  
{  
    return (guint)*(const gint64*)v;  
}  
gboolean g_double_equal(gconstpointer v1, gconstpointer v2)  
{  
    return *((cosnt gdouble*)v1) == *((const gdouble*)v2);  
}  
guint g_double_hash(gconstpointer v)  
{  
    return (guint)*(const gdouble*)v;  
}  
gboolean g_str_equal(gconstpointer v1, gconstpointer v2)  
{  
    const gchar *string1 = v1;  
    const gchar *string2 = v2;  
    return strcmp(string1, string2) == 0;  
}  
guint g_str_hash(gconstpointer v)  
{  
    /* 31 bit hash function */  
    const signed char *p = v;  
    guint32 h = *p;  
    if (h)  
    {  
        for (p += 1; *p != '/0'; p++)  
        {  
            h = (h << 5) - h + *p;  
        }     
    }  
    return h;  
}

//原文请参考:http://hi.baidu.com/gropefor/blog/item/c306aceee09738fdce1b3e18.html
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>

/*=================hash table start=========================================*/

#define HASH_TABLE_MAX_SIZE 10000
typedef struct HashNode_Struct HashNode;

struct HashNode_Struct
{
    char* sKey;//键
    int nValue;//值
    HashNode* pNext;
};

HashNode* hashTable[HASH_TABLE_MAX_SIZE]; //hash table data strcutrue
int hash_table_size;  //the number of key-value pairs in the hash table!

//initialize hash table
void hash_table_init()
{
    hash_table_size = 0;
    memset(hashTable, 0, sizeof(HashNode*) * HASH_TABLE_MAX_SIZE);
}


//string hash function
unsigned int hash_table_hash_str(const char* skey)
{
    const signed char *p = (const signed char*)skey;
    unsigned int h = *p;
    if(h)
    {
        for(p += 1; *p != '\0'; ++p)
            h = (h << 5) - h + *p;
    }
    return h;
}

//insert key-value into hash table
void hash_table_insert(const char* skey, int nvalue)
{
    if(hash_table_size >= HASH_TABLE_MAX_SIZE)
    {
        printf("out of hash table memory!\n");
        return;
    }

    unsigned int pos = hash_table_hash_str(skey) % HASH_TABLE_MAX_SIZE;

    HashNode* pHead =  hashTable[pos];
    while(pHead)
    {
        if(strcmp(pHead->sKey, skey) == 0)
        {
            printf("%s already exists!\n", skey);
            return ;
        }
        pHead = pHead->pNext;
    }

    HashNode* pNewNode = (HashNode*)malloc(sizeof(HashNode));
    memset(pNewNode, 0, sizeof(HashNode));
    pNewNode->sKey = (char*)malloc(sizeof(char) * (strlen(skey) + 1));
    strcpy(pNewNode->sKey, skey);
    pNewNode->nValue = nvalue;

    pNewNode->pNext = hashTable[pos];
    hashTable[pos] = pNewNode;


    hash_table_size++;
}

//remove key-value from the hash table
void hash_table_remove(const char* skey)
{
    unsigned int pos = hash_table_hash_str(skey) % HASH_TABLE_MAX_SIZE;
    if(hashTable[pos])
    {
        HashNode* pHead = hashTable[pos];
        HashNode* pLast = NULL;
        HashNode* pRemove = NULL;
        while(pHead)
        {
            if(strcmp(skey, pHead->sKey) == 0)
            {
                pRemove = pHead;
                break;
            }
            pLast = pHead;
            pHead = pHead->pNext;
        }
        if(pRemove)
        {
            if(pLast)
                pLast->pNext = pRemove->pNext;
            else
                hashTable[pos] = NULL;

            free(pRemove->sKey);
            free(pRemove);
        }
    }
}

//lookup a key in the hash table
HashNode* hash_table_lookup(const char* skey)
{
    unsigned int pos = hash_table_hash_str(skey) % HASH_TABLE_MAX_SIZE;
    if(hashTable[pos])
    {
        HashNode* pHead = hashTable[pos];
        while(pHead)
        {
            if(strcmp(skey, pHead->sKey) == 0)
                return pHead;
            pHead = pHead->pNext;
        }
    }
    return NULL;
}

//print the content in the hash table
void hash_table_print()
{
    printf("===========content of hash table=================\n");
    int i;
    for(i = 0; i < HASH_TABLE_MAX_SIZE; ++i)
        if(hashTable[i])
        {
            HashNode* pHead = hashTable[i];
            printf("%d=>", i);
            while(pHead)
            {
                printf("%s:%d  ", pHead->sKey, pHead->nValue);
                pHead = pHead->pNext;
            }
            printf("\n");
        }
}

//free the memory of the hash table
void hash_table_release()
{
    int i;
    for(i = 0; i < HASH_TABLE_MAX_SIZE; ++i)
    {
        if(hashTable[i])
        {
            HashNode* pHead = hashTable[i];
            while(pHead)
            {
                HashNode* pTemp = pHead;
                pHead = pHead->pNext;
                if(pTemp)
                {
                    free(pTemp->sKey);
                    free(pTemp);
                }

            }
        }
    }
}

/* ===============================hash table end=========================*/


/* ============================test function ============================*/
#define MAX_STR_LEN 20
#define MIN_STR_LEN 10
void rand_str(char r[])
{
    int i;
    int len = MIN_STR_LEN + rand() % (MAX_STR_LEN - MIN_STR_LEN);
    for(i = 0; i < len - 1; ++i)
        r[i] = 'a' + rand() % ( 'z' - 'a');
    r[len - 1] = '\0';
}

int main(int argc, char** argv)
{
    srand(time(NULL));
    hash_table_init();
    printf("insert testing.........\n");
    int n = 10;
    const char *key1 = "aaammd";
    const char *key2 = "xzzyym";
    const char *key3 = "cdcded";

    hash_table_insert(key1, 110);
    hash_table_insert(key2, 220);
    hash_table_insert(key3, 330);
    char str[MAX_STR_LEN + 1];
    while(n--)
    {
        rand_str(str);
        hash_table_insert(str, n);
    }
    hash_table_print();

    printf("\nlookup testing..........\n");
    HashNode* pNode = hash_table_lookup(key1);
    printf("lookup result:%d\n", pNode->nValue);
    pNode = hash_table_lookup(key2);
    printf("lookup result:%d\n", pNode->nValue);

    printf("\nremove testing..........\n");
    printf("before remove %s:\n", key3);
    hash_table_print();
    hash_table_remove(key3);
    printf("after remove:\n");
    hash_table_print();
    hash_table_release();

    system("pause");
    return 0;
}


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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值