私はGLibのハッシュテーブルの実装をCプログラムで使用するつもりです。ただ今のところ 私はちょうどそれを試しています。GLibハッシュテーブルループの問題
#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;
}
どういうわけか私のテストコードを反復正しくなく、ループの中で、それは常に最後のキーと最後の値のペアを返し、それは常に同じです:私はテストのために次のコードを書きました。ここでの問題は何ですか?上記のコードはそのまま書式で実行されないことがあります。私は何をしようとしているのかを明確にするために一部の部分をコピーして貼り付けました。
あなたは速かった:D。 – systemsfault
sizeofの文法(C99 6.5.3)は、 'sizeof unary-expression | sizeof(type-name) 'を使用していますが、この例ではタイプ名のみを使用しているため、ここに括弧が必要です。 –
私は長い間glibを使ってきましたが、このようなものを見つけ出すのに役立ちます。 :) – unwind