Go to the source code of this file.
Functions | |
int | compare_int (const void *int1, const void *int2) |
int | partition (void *donnee, int taille_elt, int i, int k, int(*compare)(const void *cle1, const void *cle2)) |
int | qksort (void *donnee, int nb_elts, int taille_elt, int i, int k, int(*compare)(const void *cle1, const void *cle2)) |
Sort data using the QuickSort algorithm. | |
int | extended_partition (void *donnee, int taille_elt, int i, int k, int(*compare)(const void *cle1, const void *cle2), int(*copy_data)(void *src, void *dest), int(*init_elem)(void *elm)) |
int | extended_qksort (void *donnee, int nb_elts, int taille_elt, int i, int k, int(*compare)(const void *cle1, const void *cle2), int(*copy_data)(void *src, void *dest), int(*init_elem)(void *elm)) |
Sort data using the QuickSort algorithm. |
Definition in file qksort.c.
|
Sort data using the QuickSort algorithm.
|
|
Sort data using the QuickSort algorithm.
|