3

我将在 C 程序中使用GLib的 Hash table 实现,现在我只是在试验它。我编写了以下代码进行测试:

 #include <glib.h>
 #include <stdlib.h>
 #include <stdint.h>
 #include <stdio.h>
 #include <string.h>

 int main(){
 // Some codes and declerations here
 GHashTable *g_hash_table;
 uint32_t *a;
 a=(uint32_t *)malloc(sizeof(uint32_t));
 if(a==NULL){
    printf("Not Enough Mem For a\n");
    return 1;
 }
 *a=1123231;

 uint32_t* key;
 key=(uint32_t *)malloc(sizeof(uint32_t));
 if(key==NULL){
     printf("Not Enough Mem For key\n");
     return 1;
 }
 *key=122312312;
 int i;
 g_hash_table=g_hash_table_new(g_int_hash, g_int_equal);
 for(i=0;i<TABLE_SIZE;i++){
     *key+=1;
     *a+=1;
     g_hash_table_insert(g_hash_table,(gpointer)key,(gpointer)a);
     uint32_t *x=(uint32_t *)g_hash_table_lookup(g_hash_table,key);
     printf("Counter:%d,  %u\n",i,*x);
 }

GHashTableIter iter;
g_hash_table_iter_init(&iter,g_hash_table);
int size=g_hash_table_size(g_hash_table);
printf("First size: %d\n",size);
uint32_t *val;
uint32_t *key_;
int counter=0;

// My problem is in the following loop it 
// always returns the same and the last key value pair
 while(g_hash_table_iter_next(&iter,(gpointer*)(void*)&key_,(gpointer*)(void*)&val)){
     counter++;
     printf("%u %u\n",(uint32_t)*key_,(uint32_t)*val);
     printf("Counter: %d\n",counter);
 }
 //Some more code here        
    return 0;
}

不知何故,我的测试代码可以正确迭代,但在循环中它总是返回最后一个键和最后一个值对,而且它总是一样的。这里有什么问题?上面的代码可能无法运行,因为它是格式。我只是复制并粘贴了一些部分,以便清楚地了解我要做什么。

4

2 回答 2

9

我认为您的插入代码已损坏。您只分配一次内存,然后进行多次插入,增加存储在每个之间的单个分配位置中的值。

哈希表存储您的指针,因此最终会将每个键与相同的指针相关联。

此外,为了保持一致性,您可能应该g_malloc()与 glib 一起使用。

而且我总是建议sizeof在对象上使用而不是在它们的类型上使用;这样你就不会以非常危险的方式重复自己。所以,而不是

  guint32 *a;

  a = g_malloc(sizeof (guint32));

采用

  a = g_malloc(sizeof *a);

通过这种方式,您“锁定”了依赖项,以便您始终分配足够的空间来存储任何a点,即使您后来更改了类型。

此外,您应该仔细检查您所做的每个演员表。将任何非常量指针强制转换gpointer为犹豫不决的程序员的标志。对于 glib,gpointer只是 的同义词void *,因此永远不需要强制转换。它只是给你的代码增加了杂乱无章,使它更难阅读。

于 2009-03-31T08:05:03.730 回答
4

key,a声明中有错误。您总是将相同的指针放在哈希表中。尝试:

#include <glib.h>
#include <stdlib.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>

#define TABLE_SIZE 12

int main() {
    // Some codes and declarations here
    GHashTable *g_hash_table;
    int i;

    g_hash_table = g_hash_table_new(g_int_hash, g_int_equal);
    for (i=0; i<TABLE_SIZE; i++)
    {
        uint32_t* key = (uint32_t *)malloc(sizeof(uint32_t));
        uint32_t* a = (uint32_t *)malloc(sizeof(uint32_t));
        *key = i;
        *a   = i+10;
        g_hash_table_insert(g_hash_table, (gpointer)key, (gpointer)a);
        uint32_t *x = (uint32_t *)g_hash_table_lookup(g_hash_table,key);
        printf("key: %d -->  %u\n", *key ,*x);
    }

    GHashTableIter iter;
    int size=g_hash_table_size(g_hash_table);
    printf("First size: %d\n", size);

    uint32_t *val;
    uint32_t *key_;

    // My problem is in the following loop
    // it always returns the same and the last key value pair

    g_hash_table_iter_init (&iter, g_hash_table);
    while (g_hash_table_iter_next (&iter, (gpointer) &key_, (gpointer) &val))
    {
        printf("key %u ---> %u\n", (uint32_t)*key_, (uint32_t)*val);
    }

    // TODO: free keys
    return 0;
}
于 2009-10-21T12:14:25.083 回答