我在C中有一个创建哈希表的程序。我想知道它是什么,但我不确定如何打印或显示它。我已粘贴下面的程序。我对哈希表很新,所以任何帮助都会非常感谢!
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#define TABLE_SIZE 7
#define NUM_INPUTS 7
int hash( char *s )
/* Note, this is a horrible hash function. It's here for
instructional purposes */
{
return strlen( s ) % TABLE_SIZE ;
}
typedef struct entry
{
char *key;
int val;
struct entry *next;
} entry;
entry* table[ TABLE_SIZE ] = { NULL };
void insert( char *s, int v )
/* this insert is NOT checking for duplicates. :/ */
{
int h = hash( s );
entry *t = (entry*) malloc( sizeof( entry ));
t->key = s;
t->val = v;
t->next = table[h];
table[h] = t;
}
void clean_table()
{
entry *p, *q;
int i;
for( i=0; i<TABLE_SIZE; ++i )
{
for( p=table[i]; p!=NULL; p=q )
{
q = p->next;
free( p );
}
} // for each entry
} // clean_table
int main()
{
char* keyList[] = { "Jaga", "Jesse", "Cos", "Kate", "Nash", "Vera",
"Bob" };
int valList[] = { 24, 78, 86, 28, 11, 99, 38 };
int i;
for( i=0; i<NUM_INPUTS; ++i )
insert( keyList[i], valList[i] );
/* what does the table look like here? */
clean_table();
return( 0 );
}
答案 0 :(得分:1)
这里是C中一个简单哈希表的例子。它并没有真正做任何错误处理,所以这根本不适合生产,但它应该有助于看到{{3 }}。 example of a working implementation是另一篇帮助某人在C中实现哈希表实现的帖子。
答案 1 :(得分:1)
根据评论中的要求,所需的搜索功能如下所示:
int search(const char* key, int* out_val)
{
// Find the hash index into the table.
const int index = hash(key);
// Now do a linear search through the linked list.
for (struct entry* node = table[index]; node; node = node->next)
{
// If we find a node with a matching key:
if (strcmp(node->key, key) == 0)
{
// Output the value and return 1 for success.
*out_val = node->val;
return 1;
}
}
// We didn't find anything. Return 0 for failure.
return 0;
}