Добавил к седьмому заданию сравнение разных сортировок, сделал 9е задание на массивы

This commit is contained in:
AZEN-SGG 2024-12-04 13:25:05 +03:00
parent c33f7295d5
commit a45af76154
25 changed files with 599 additions and 23 deletions

View file

@ -3,7 +3,9 @@
#include <stdlib.h>
#include <time.h>
#include <stdbool.h>
void quicksort(double * array, int length);
void bubble(double *arr, int length);
#endif