Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question
GCompareFunc is not a sort method - it's a standard function prototype for comparison functions to be provided to sort methods. (And as SB noted, GLib does have sort methods, for the types which it makes sense to sort.) – Jefromi Mar 9 '10 at 0:21

1 Answer

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.

share|improve this answer
Thanks for the info! – Mike Mar 9 '10 at 0:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.