forked from menault/TD1_DEV51_Qualite_Algo
.
This commit is contained in:
8
quicksort.h
Normal file
8
quicksort.h
Normal file
@@ -0,0 +1,8 @@
|
||||
#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
|
Reference in New Issue
Block a user