Comparing Sorting Algorithms
Program to time several sorting algorithms on several data sets, while also illustrating C/C++ Style Guide Documentation
Data Fields
sorts Struct Reference

Data Fields

char * name
 
void(* sortProc )(int[], int)
 

Detailed Description


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. *

Field Documentation

◆ name

char* name

the name of a sorting algorithm as text

◆ sortProc

void(* sortProc) (int[], int)

the procedure name of a sorting function


The documentation for this struct was generated from the following file: