Hash表

1.代码如下

#include <stdio.h>
#include<malloc.h>

#define TABLE_SIZE 19

typedef struct Node{
	int Key;
	char value;
}Node,*NodePtr;

/**
*<key,value>pair.
*/

typedef struct hashList{
	int length;
	NodePtr elements;
}hashList,*ListPtr;

/**
*Initaliize a data array.
*/

ListPtr initList(int *paraKeys,char *paraValues,int paraLength){
	int i,tempPosition;
	ListPtr resultPtr=(ListPtr)malloc(sizeof(struct hashList));
	
	//step1.initalize.
	resultPtr->length=paraLength;
	resultPtr->elements=(NodePtr)malloc(TABLE_SIZE*sizeof(struct Node));
	for(i=0;i<TABLE_SIZE;i++){
		resultPtr->elements[i].Key=-1;
		resultPtr->elements[i].value='x';
	}//of for i
	
	//step2.fill the data.
	for(i=0;i<paraLength;i++){
		//Hash
		tempPosition = paraKeys[i] %TABLE_SIZE;
		
		//find an empty position.
		while(resultPtr->elements[tempPosition].Key!=-1){
			tempPosition=(tempPosition+1)%TABLE_SIZE;
			printf("Collision,move forward for key %d\r\n",paraKeys[i]);
		}//of while
		
		resultPtr->elements[tempPosition].Key=paraKeys[i];
		resultPtr->elements[tempPosition].value=paraValues[i];
	}//of for i
	return resultPtr;
}//of initList

/**
*hashSearch.
*
*@param paraKey The given key.
*@return The content of the key.
*/
 
char hashSearch(ListPtr paraPtr,int paraKey){
	int tempPosition = paraKey%TABLE_SIZE;

	while(paraPtr->elements[tempPosition].Key!=-1){
		if(paraPtr->elements[tempPosition].Key==paraKey){
			return paraPtr->elements[tempPosition].value;
		}//of if
		tempPosition=(tempPosition+1)%TABLE_SIZE;
	}//of while
	return 'x';
}//of hashSearch

void hashSearchTest(){
	int tempUnsortedKeys[]={16,33,38,69,57,95,86};
	char tempContents[]={'h','e','i','o','w','r','d'};
	ListPtr tempPtr=initList(tempUnsortedKeys,tempContents,7);
	
	printf("Search result of 95 is %c\r\n",hashSearch(tempPtr,95));
	printf("Search result of 38 is %c\r\n",hashSearch(tempPtr,38));
	printf("Search result of 57 is %c\r\n",hashSearch(tempPtr,57));
	printf("Search result of 4 is %c\r\n",hashSearch(tempPtr,4));
	
}//of hashSearchTest

/**
*The ebtrance of the program;
*/

int main() {
	hashSearchTest();
	return 1;
}//of main

2.运行结果

dab3bf80b9264051a7e13091b6294e51.jpg

 3.小结

实现细节

动态调整哈希表大小(如自动扩容或缩容)可以维持高效性能。

优点

查找、插入和删除操作的平均时间复杂度可以达到O(1),在理想情况下非常高效。

 

 

 

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值