sorting.h 262 B

12345678910111213
  1. #ifndef SORTING_H
  2. #define SORTING_H
  3. #include <stdio.h>
  4. #include <stdint.h>
  5. #include <stdlib.h>
  6. unsigned chose_pivot(int first, int last);
  7. int partitionning(double *arr, int first, int last, int pivot);
  8. void quicksort(double *arr, int first, int last);
  9. #endif