Select Git revision
Forked from
algorithmique / cours
Source project has a limited visibility.
heapsort.h 232 B
#ifndef HEAPSORT_H
#define HEAPSORT_H
int fils_g(int i);
int fils_d(int i);
int max3(int* tab,int size,int i);
void promotion(int* tab,int size,int i);
void entassement(int* tab,int size);
void heapsort(int* tab,int size);
#endif