Добавил к седьмому заданию сравнение разных сортировок, сделал 9е задание на массивы
This commit is contained in:
parent
c33f7295d5
commit
a45af76154
25 changed files with 599 additions and 23 deletions
14
WorkingArrays/9Ex/grouping.h
Normal file
14
WorkingArrays/9Ex/grouping.h
Normal file
|
@ -0,0 +1,14 @@
|
|||
#ifndef GROUPING
|
||||
#define GROUPING
|
||||
|
||||
#include <stdio.h>
|
||||
#include <math.h>
|
||||
|
||||
#define eps 1.e-6
|
||||
|
||||
void group(double * array, int length);
|
||||
void negativeToRight(double * array, int length);
|
||||
void zeroesToCenter(double * array, int length);
|
||||
void printArray(double * array, int length);
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue