I'll get started on the template and the two sorts as soon as I can, I have to work most weekend and start an assignment for school. I have a quick question though,
Code:
void bubbleSort(string* array, const size_t size);
void print_array(string* array, const size_t size);
What is the usage of size_t? excluding the size (leaving just const size_t) asks for a definition of size_t, but I have never seen anyone use this before. Thanks Valmont,