我正在使用Glib进行哈希表。我需要从key更新值。有没有删除的方法,并插入哈希表进行更新。
我找到了g_hash_table_replace ()
gboolean
g_hash_table_replace (GHashTable *hash_table,
gpointer key,
gpointer value);
此更新值是否来自密钥,如果它是如何使用此功能的。
解:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <signal.h>
#include <glib.h>
GHashTable * hash_operation = NULL;
int main(int argc, char *argv[]) {
char *from;
int gg = 3;
char *a=strdup("32"),*b=strdup("24"),*c=("mübarek");
hash_operation = g_hash_table_new(g_str_hash, g_str_equal);
g_hash_table_insert(hash_operation, a, gg);
from = strdup(g_hash_table_lookup(hash_operation, a));
printf("%s\n",from);
g_hash_table_replace (hash_operation, a,c);
from = strdup(g_hash_table_lookup(hash_operation, a));
printf("%s\n",from);
free(a);
free(b);
free(c);
free(from);
return 0;
}
问题解决了。
答案 0 :(得分:1)
函数g_hash_table_replace
的使用非常简单:
需要3个参数:
hash_table
:当然你是哈希表,所以在你的情况下hash_operation
key
:您要编辑的密钥。 (我相信你的关键是a
)value
:应存储在key
一个简单的例子是:
GHashTable *table = g_hash_table_new(g_str_hash, g_str_equal);
gchar *key = "key1";
g_hash_table_insert(table, key, "Hello");
g_hash_table_replace(table, key, "World");
gchar *result = (gchar*) g_hash_table_lookup(table, key);
g_print("Result: %s\n", result); //Prints: "Result: World"