// // Created by red on 01/12/19. // #ifndef SORTS_SORTS_H #define SORTS_SORTS_H #include void quicksort(double* arr, size_t n); void shellsort(double* arr, size_t n); void selectionsort(double* arr, size_t n); #endif //SORTS_SORTS_H