This commit is contained in:
2025-09-10 17:19:40 +02:00
parent 2e88e78c75
commit 80b52fdf28
3 changed files with 9 additions and 23 deletions

8
quicksort.h Normal file
View 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