6void heapsort(
int n,
double *r,
int *ind);
7void heapAjust(
double r[],
int ind[],
int s,
int m);
8void hpsort(
int n,
double *ra,
int *ind);
Definition array_pool.h:6
void heapsort(const int n, double *r, int *ind)
Definition mymath.cpp:36
void heapAjust(double *r, int *ind, int s, int m)
Definition mymath.cpp:8
void hpsort(int n, double *ra, int *ind)
Definition mymath.cpp:90