quicksort

This commit is contained in:
vaisse
2025-09-10 17:15:58 +02:00
parent 533d7685ca
commit d2f5c7106d
5 changed files with 76 additions and 1 deletions

7
quicksort.h Normal file
View File

@@ -0,0 +1,7 @@
#ifndef __QUICKSORT__
#define __QUICKSORT__
int Partition(int * array, int lo, int hi);
void quicksort(int * array, int lo, int hi);
#endif