Sort Hash Tables Glib - qsort
I'm trying to sort a GLib hash table by id that looks something like:
key - id
{
"Red", 2,
"BLue", 4,
"Yellow", 5,
"Orange",开发者_开发百科 8
}
I'm just not sure how to approach this because GLib does not have a sort method. I was thinking to use qsort or GCompareFunc
Any ideas will be appreciate it!
Hash tables aren't supposed to be sorted. You should get a GList* from the g_hash_table_get_keys (or values if that's what you're sorting) and sort that. Also, be careful about confusing glibc and GLib.
精彩评论