This commit is contained in:
2025-09-15 14:34:48 +02:00
parent ca552281c9
commit 5f5041663e
7 changed files with 76 additions and 7 deletions

6
quicksort.h Normal file
View File

@@ -0,0 +1,6 @@
#ifndef QUICKSORT_H
#define QUICKSORT_H
void quicksort(int* array, int left, int right);
#endif