/*
Sorting.h

output a a comma-seperated list of sorting function, array size, sorting time
*/

void selectionSort(int arr[], int n);

void insertionSort(int arr[], int n);

void bubbleSort(int arr[], int n);
