I love days like today. Dark grey clouds, constant rain, a little breeze maybe. But man, I'm really feeling sluggish today. Not sure if I've just not gotten enough sleep the last couple of days, but a nap sounds really enticing now
( Read more... )
Its a programming technique that's used to pass the memory location of a function to another function as an argument. Hrm, that's not very helpful, I imagine.
Quicksort is a function that takes two arguments: a linked list, LList, and a function which can compare two elements in the linked list, cmp.
Function pointers allow me to write the generic Qsort function, by passing a different cmp function based on what's in the list.
Comments 5
Reply
Quicksort is a function that takes two arguments: a linked list, LList, and a function which can compare two elements in the linked list, cmp.
Function pointers allow me to write the generic Qsort function, by passing a different cmp function based on what's in the list.
Reply
Reply
Reply
Reply
Leave a comment