#ifndef SORTING_H #define SORTING_H #include #include #include unsigned chose_pivot(int first, int last); int partitionning(double *arr, int first, int last, int pivot); void quicksort(double *arr, int first, int last); #endif