哈希表之链地址发

链地址发

    将所有的关键字为同义词的记录储存在同一线性链表中。

    比如,我们对于关键字集合{12,67,56,16,25,37, 22,29,15,47,48,34},我们用前面同样的12为除数,进行除留余数法:

当哈希表中的元素个数等于哈希表的容量时,哈希表需要增容。

sum.h

typedef struct linklist
{
	int data;
	struct linklist* next;
}NODE;

typedef struct hash
{
	NODE* node;
	int capacity;
	int size;
}Hash;
void  inithash(Hash* hash,int capacity);//初始化
int hashfunction(Hash* hash,int data);//哈希函数
void inserthash(Hash* hash, int data);//入表
void removehash(Hash* hash, int data);//出表
int findhash(Hash* hash, int data);//寻找元素
void capacityadd(Hash* hash);//增容
int emptyhash(Hash* hash);//表空?
int sizehash(Hash* hash);//表中的容量
void destroyhash(Hash* hash);//销毁
void printfhash(Hash* hash);//打印
int getnextprime(int a);/获取下一个质数

sum.c

#include"sum.h"
#include<assert.h>
#include<windows.h>
#include<stdio.h>
void  inithash(Hash* hash,int capacity)
{
	assert(hash);
	int i = 0;
	hash->node = malloc(sizeof(NODE)*capacity);
	for (i = 0; i < capacity; i++)
	{
		hash->node[i].next = NULL;
	}
	hash->capacity = capacity;
	hash->size = 0;
}
int hashfunction(Hash* hash,int data)
{
	return data%hash->capacity;

}
NODE* buynode(int data)
{
	NODE* pnew = malloc(sizeof(NODE));
	pnew->next = NULL;
	pnew->data = data;
	return pnew;
}
void capacityadd(Hash* hash)
{
	if (hash->capacity == hash->size)
	{
		int i = 0;
		int newcapacity = getnextprime(hash->capacity);
		NODE* pnew = malloc(sizeof(NODE)*newcapacity);
		for (i = 0; i < newcapacity; i++)
			pnew[i].next = NULL;
		hash->capacity = newcapacity;
		//拷贝
		for (i = 0; i < hash->size; i++)
		{
			NODE* cur = hash->node[i].next;
			while (cur)
			{
				int newhashaddr = hashfunction(hash, cur->data);
				NODE* pnewnode = buynode(cur->data);
				NODE* cur1 = pnew[newhashaddr].next;
				if (pnew[newhashaddr].next == NULL)//插入的节点是哈希表某个节点的第一个节点
				{
					pnew[newhashaddr].next = pnewnode;
				}
				pnewnode->next = cur1;
				pnew[newhashaddr].next = pnewnode;//头插
				cur = cur->next;
			}
		}
		free(hash->node);//释放原来的节点
		hash->node = pnew;
	}
}
void inserthash(Hash* hash, int data)
{
	assert(hash);
	capacityadd(hash);//增容
	int hashaddr = hashfunction(hash, data);
	NODE* cur = NULL;
	NODE* pnew = buynode(data);
	cur = hash->node[hashaddr].next;
	if (hash->node[hashaddr].next == NULL)//插入的节点是哈希表某个节点的第一个节点

	{
		
		hash->node[hashaddr].next = pnew;
		hash->size++;
		return;
	}
	pnew->next = cur;
	hash->node[hashaddr].next = pnew;
	hash->size++;
}
void removehash(Hash* hash, int data)
{
	assert(hash);
	int hashaddr = hashfunction(hash, data);
	NODE* cur = hash->node[hashaddr].next;
	NODE* parent = NULL;
	while (cur)
	{
		if (cur->data == data)
		{
			if (parent == NULL)
			{
				hash->node[hashaddr].next = cur->next;
				hash->size--;
				free(cur);
				cur = NULL;
				return;
			}
			parent->next = cur->next;
			hash->size--;
			free(cur);
			cur = NULL;
			return;
		}
		parent = cur;
		cur = cur->next;
	}
	printf("删除的数不存在\n");
}
int findhash(Hash* hash, int data)
{
	assert(hash);
	int hashaddr = hashfunction(hash, data);
	NODE* cur = hash->node[hashaddr].next;
	NODE* parent = NULL;
	while (cur)
	{
		if (cur->data == data)
		{
			return 1;
		}
		parent = cur;
		cur = cur->next;
	}
	printf("寻找的数不存在\n");
	return 0;
}
int emptyhash(Hash* hash)
{
	assert(hash);
	int i ,count= 0;
	for (i = 0; i < hash->capacity; i++)
	{
		if (hash->node[i].next == NULL)
			count++;
	}
	if (count == hash->capacity)
		return 1;
	return 0;
}
int sizehash(Hash* hash)
{
	return hash->size;
}
void destroyhash(Hash* hash)
{
	assert(hash);
	int i;
	NODE* cur = NULL;
	for (i = 0; i < hash->capacity; i++)
	{
		cur = hash->node[i].next;
		while (cur != NULL)
		{
			NODE* del = cur;
			cur = del->next;
			free(del);
			del = NULL;
		}
	}
}
void printfhash(Hash* hash)
{
	assert(hash);
	int i = 0;

	for (; i < hash->capacity; i++)
	{
		NODE* cur = hash->node[i].next;
		printf("node[%d]=", i);
		while (cur)
		{
			printf("%d--->", cur->data);
			cur = cur->next;
		}
		printf("NULL\n");
	}
}
int getnextprime(int a)

{
	int _PrimeSize = 28;
	int _PrimeList[28] =
	{
		53ul, 97ul, 193ul, 389ul, 769ul,
		1543ul, 3079ul, 6151ul, 12289ul, 24593ul,
		49157ul, 98317ul, 196613ul, 393241ul, 786433ul,
		1572869ul, 3145739ul, 6291469ul, 12582917ul, 25165843ul,
		50331653ul, 100663319ul, 201326611ul, 402653189ul, 805306457ul,
		1610612741ul, 3221225473ul, 4294967291ul
	};
	for (int i = 0; i < _PrimeSize; i++)
	{
		if (_PrimeList[i]>a)
			return _PrimeList[i];
	}
	return _PrimeList[_PrimeSize - 1];
}

test.c

 

#include<windows.h>
#include<stdio.h>
#include"sum.h"
int main()
{
	Hash hash;
	inithash(&hash,12);
	inserthash(&hash, 12);
	inserthash(&hash, 67);
	inserthash(&hash, 56);
	inserthash(&hash, 16);
	inserthash(&hash, 25);
	inserthash(&hash, 37);
	inserthash(&hash, 22);
	inserthash(&hash, 29);
	inserthash(&hash, 15);
	inserthash(&hash, 47);
	inserthash(&hash, 48);
	inserthash(&hash, 34);
	printfhash(&hash);
	destroyhash(&hash);
	system("pause");
	return 0;
}

没有在增容前的结果:

当我们继续插入一个元素这时候哈希表中的元素数大于哈希表的容量时,我们就要对其增容:

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值