1234567891011121314151617181920212223242526272829 |
- #ifndef SORTING_H
- #define SORTING_H
- #include <stdio.h>
- #include <stdint.h>
- #include <stdlib.h>
- 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
|