我的入门C类的功课是用动态分配完成C中哈希表的实现。我必须使用提供的头文件,但是我不确定自己在做什么错。头文件:
/// structure for the nodes of the chains
struct node_s {
char *key;
int value;
struct node_s *link;
};
/// This is the main structure for the overall table.
struct table_s {
/// This should be used as a pointer to a dynamically
/// allocated array of pointers to node structures.
struct node_s **table;
/// This is for storing the maximum number of buckets/lists in the table.
size_t bins;
/// This is for storing the current number of elements in the table
size_t size;
};
/// A convenience declaration for referring to a pointer to a HT..
typedef struct table_s *hash_t;
我需要什么,我一直在尝试实现什么:
/// Allocate a table with some initial empty bins.
/// @param bins -- the number of bins in the table (initally empty)
/// @return -- a pointer to a dynamically allocated hash table
hash_t create_table(int bins){
struct node_s *nodes[bins];
for(int i = 0; i < bins; i++){
nodes[i] = NULL;
}
hash_t table = malloc(sizeof(hash_t));
table -> table = nodes;
table -> bins = bins;
table -> size = 0;
return table;
}
/// Set the value for a key in a given hash table.
/// @note -- if this is the first time setting this key, then the
/// table must make a dynamic copy of the string. This
/// copy must be freed when the table is freed.
/// @note -- if the table exceeds a load factor of 1 after setting
/// the key/value pair, then this function should trigger
/// rehashing into a larger table. It will then deallocate
/// the table field in the table_s structure, but it will
/// NOT free the table address in the table parameter.
/// @param table -- a pointer to a hash table
void set(hash_t table, char *key, int value){
int index = hash(key) % table -> bins;
printf("Index: %d\n", index);
struct node_s *node = table -> table[index];
struct node_s *newNode = malloc(sizeof(newNode));
newNode -> key = key;
newNode -> value = value;
newNode -> link = NULL;
printf("New node, key: %s\n", newNode -> key);
if(node == NULL){
printf("Filled bucket!\n");
table -> table[index] = newNode;
table -> size = table -> size + 1;
}else{
printf("Chained!\n");
while(node -> link != NULL){
node = node -> link;
}
node -> link = newNode;
}
printf("\n");
}
运行方式:
char key[max_key];
hash_t table = create_table(10);
for (int i = 0; i < trials; i++) {
int sample = rand() % max_num;
sprintf(key, "%d", sample);
set(table, key, sample);
}
我运行时的输出:
Index: 7
New node, index: 7, key: 83
NULL!
New bucket filled!
Index: 0
New node, index: 0, key: 86
NOT NULL!
Segmentation fault (core dumped)
预期:
Index: 7
New node, index: 7, key: 83
NULL!
New bucket filled!
Index: 0
New node, index: 0, key: 86
NULL!
New bucket filled!
依此类推,直到索引处的节点不为NULL时发生冲突,所以newNode通过替换存在的最后一个节点的NULL *链接来链接自身。
我知道我的链接还不太正确,需要扩展,但是我真的很困惑为什么它没有在该位置注册NULL并放置一个新的链表节点,而是尝试添加就像发生了碰撞一样拖到链表上。
答案 0 :(得分:3)
编码提示:不要在点.
或箭头->
运算符之前/之后放置空格。
代替此:
table -> bins
此:
table->bins
您的实际问题是这个。 create_table
未正确分配垃圾箱内存。更糟糕的是,它在堆栈上使用了一个数组。 create_table返回时,该内存是未定义的行为。更好:
hash_t create_table(int bins){
hash_t table = malloc(sizeof(hash_t));
table->table = calloc(sizeof(struct node_s*) * bins); //malloc and zero-init
table->bins = bins
table->size = 0;
return table;
}
此外,代替此:
if(node == NULL){
printf("Filled bucket!\n");
table -> table[index] = newNode;
table -> size = table -> size + 1;
}else{
printf("Chained!\n");
while(node -> link != NULL){
node = node -> link;
}
node -> link = newNode;
}
只需执行以下操作:
printf("%s\n", (table->table[index] ? "Filled bucked!" : "Chained!"));
newNode->link = table->table[index];
table->table[index] = newNode;
每次将新节点添加到垃圾箱时,它就会成为垃圾箱链接列表中的头项。链接发生在每个垃圾箱列表的前面,而不是后面。