Files
TD1_DEV51_Qualite_Algo/quicksort.h
2025-09-10 17:19:40 +02:00

8 lines
171 B
C

#ifndef __QUICKSORT__
#define __QUICKSORT__
void swap(int *a, int *b);
int partition(int arr[], int low, int high);
void quickshort(int arr[], int low, int high);
#endif