我正在学习如何实现哈希表,但我在这里有点困惑,因为在下面的书中代码是可用的,我对代码的理解得很好,但在书中没有HASH
函数的定义,我知道我们必须通过拥有,但根据下面的代码给出内部书HASH
正在采取两个论点,无论我在HASH
使用HashInsert
,如果我们假设index=HASH(data,t->size)
的返回类型为int现在为两个参数HASH
,例如我们可以将HASH
定义为
int HASH(int data,int tsize){
return(data%7);
}
但根据我的程序,我应该如何更新t->size
函数内的HASH
(表大小)或我应该如何使用它请帮助我正确实现上面的HASH
函数
#define Load_factor 20
#include<stdio.h>
#include<stdlib.h>
struct Listnode{
int key;
int data;
struct Listnode* next;
};
struct HashTableNode{
int bcount; /// Number of elements in block
struct Listnode* next;
};
struct HashTable{
int tsize; /// Table size
int count;
struct HashTableNode** Table;
};
struct HashTable* createHashTable(int size){
struct HashTable* h;
h=(struct HashTable*)malloc(sizeof(struct HashTable));
h->tsize=size/Load_factor;
h->count=0;
h->Table=(struct HashTableNode**)malloc(sizeof(struct HashTableNode*)*h->tsize);
if(!h->Table){
printf("Memory Error");
return NULL;
}
for(int i=0;i<h->tsize;i++){
h->Table[i]->bcount=0;
h->Table[i]->next=NULL;
}
return h;
}
/// Hashsearch
int HashSearch(struct HashTable* h,int data){
struct Listnode* temp;
temp=h->Table[HASH(data,h->tsize)]->next;
while(temp) ///same as temp!=NULL
{
if(temp->data==data)
return 1;
temp=temp->next;
}
return 0;
}
int HashDelete(struct HashTable* h,int data)
{
int index;
struct Listnode *temp,*prev;
index=HASH(data,h->tsize);
for(temp=h->Table[index]->next,prev=NULL;temp;prev=temp,temp=temp->next)
{
if(temp->data==data)
{
if(prev!=NULL)
prev->next=temp->next;
free(temp);
h->Table[index]->bcount--;
h->count--;
return 1;
}
}
return 0;
}
int HashInsert(struct HashTable *h ,int data){
int index;
struct Listnode* temp,*newnode;
if(HashSearch(h,data))
return 0;
index = HASH(data,h->tsize);
temp=h->Table[index]->next;
newnode=(struct Listnode*)malloc(sizeof(struct Listnode));
if(!newnode)
return -1;
newnode->key=index;
newnode->data;
newnode->next=h->Table[index]->next;
h->Table[index]->next=newnode;
h->Table[index]->bcount++;
h->count++;
return 1;
}
我正在学习哈希的实现,因此主要看起来很安静
int main(){
return 0;
}
你不应该!我的意思是你不应该修改它。
相反,该函数获取散列表的大小(“桶”的数量),因此它可以使用它从散列值创建桶索引。这通常通过modulo %
完成。
所以,而不是固定的magic number 7
,你的模数大小:
return(data%tsize);