这是我用于存储字符串值的哈希表的代码。要在我的“插入”函数中使用线性探测,我需要检查指针在该特定哈希值处是否为 NULL。我还没有完成我的插入函数,但是我被卡住了,因为当我在插入函数中检查if(the_hash_table[n]==NULL) 时,它没有进入分支。如果我打印“the_hash_table[1]”,在散列值之前,它会打印“faz”,但是在我打印它的那一步之后,它会打印一些奇怪的字符。我哪里出错了?
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
/*
creates a hash table of size 10
*/
char** create_hash_table(){
char* the_hash_table[10]; // defines a hash table to store strings
*the_hash_table=malloc(sizeof(char*)*10); // allocates memory in the heap for the hash table
int i;
for(i=0;i<10;i++){ // this loop initializes the string pointers to NULL at the starting point of the hash table
the_hash_table[i]=NULL;
}
return &the_hash_table; // returns the address of the hash table to the main memory
}
/*
this is a method to insert a string into the relevant position of the hash table
*/
void insert(char* the_string,char** the_hash_table){
printf("%s",the_hash_table[1]);
int n=hash(the_string);
printf("%s",the_hash_table[1]);
if(the_hash_table[n] == NULL)
the_hash_table[n]=the_string;
}