Salad
1.0.15
|
#include "salad/types.h"
Go to the source code of this file.
Functions | |
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. More... | |
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 sets of data. More... | |
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 sets of data. More... | |