Contains an optimized Heap Sort implementation for sorting strings. More...
#include "report.h"
Functions | |
void | sortPointers (char **arr, int N, int(*cmp)(const void *, const void *)) |
Execute Heap Sort on the string array. |
Contains an optimized Heap Sort implementation for sorting strings.
Implementation taken from:
http://en.wikibooks.org/wiki/Algorithm_implementation/Sorting/Heapsort
void sortPointers | ( | char ** | arr, | |
int | N, | |||
int(*)(const void *, const void *) | cmp | |||
) |
Execute Heap Sort on the string array.
Algorithm Development Kit 1.0