void sld_sort_insertion(void *data_structure, SLD_DATA_STRUCTURE data_structure_type, SLD_DATA_TYPE data_type)
A simple sorting algorithm that sorts by inserting data that is out of order and works well for small...
void sld_sort_selection(void *data_structure, SLD_DATA_STRUCTURE data_structure_type, SLD_DATA_TYPE data_type)
A simple sorting algorithm that sorts by swapping data that is out of order and suffices for small se...
void sld_sort_bubble(void *data_structure, SLD_DATA_STRUCTURE data_structure_type, SLD_DATA_TYPE data_type)
A simple sorting algorithm that sorts by swapping pairs of data and works well for small sets of data...
SLD_DATA_STRUCTURE
Definition: types.h:70
SLD_DATA_TYPE
Definition: types.h:83