Написал 7е задание на быструю сортировку
This commit is contained in:
parent
c6539e2868
commit
c33f7295d5
10 changed files with 280 additions and 22 deletions
9
Sorting/7Ex/quicksort.h
Normal file
9
Sorting/7Ex/quicksort.h
Normal file
|
@ -0,0 +1,9 @@
|
|||
#ifndef QUICKSORT
|
||||
#define QUICKSORT
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <time.h>
|
||||
|
||||
void quicksort(double * array, int length);
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue