|
Comparing Sorting Algorithms
Program to time several sorting algorithms on several data sets, while also illustrating C/C++ Style Guide Documentation
|
Data Fields | |
| char * | name |
| void(* | sortProc )(int[], int) |
structure to identify both the name of a sorting algorithm and * a pointer to the function that performs the sort * the main function utilizes this struct to define an array of * the sorting algorithms to be timed by this program. *
| char* name |
the name of a sorting algorithm as text
| void(* sortProc) (int[], int) |
the procedure name of a sorting function