forked from menault/TD1_DEV51_Qualite_Algo
8 lines
171 B
C
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
|