Files
TD1_DEV51_Qualite_Algo/quicksort.h

8 lines
171 B
C
Raw Permalink Normal View History

2025-09-10 17:19:40 +02:00
#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