This commit is contained in:
2025-09-10 17:24:01 +02:00
parent ca552281c9
commit dd0498e954
7 changed files with 144 additions and 4 deletions

8
quicksort.h Normal file
View File

@@ -0,0 +1,8 @@
#ifndef __QUICKSORT__
#define __QUICKSORT__
void quicksort(int* array, int left, int right);
int partition(int left, int right, int pivot);
void swap(int num1, int num2);
#endif