Написал 7е задание на быструю сортировку

This commit is contained in:
AZEN-SGG 2024-12-01 12:44:53 +03:00
parent c6539e2868
commit c33f7295d5
10 changed files with 280 additions and 22 deletions

9
Sorting/7Ex/quicksort.h Normal file
View file

@ -0,0 +1,9 @@
#ifndef QUICKSORT
#define QUICKSORT
#include <stdlib.h>
#include <time.h>
void quicksort(double * array, int length);
#endif