You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
248B

  1. //
  2. // Created by red on 01/12/19.
  3. //
  4. #ifndef SORTS_SORTS_H
  5. #define SORTS_SORTS_H
  6. #include <stddef.h>
  7. void quicksort(double* arr, size_t n);
  8. void shellsort(double* arr, size_t n);
  9. void selectionsort(double* arr, size_t n);
  10. #endif //SORTS_SORTS_H