Files
TD1_DEV51_Qualite_Algo/heapsort.h
James Boutaric 1bf1d139d7 TD1.md
2025-09-10 16:32:27 +02:00

9 lines
178 B
C

#ifndef __HEAPSORT__
#define __HEAPSORT__
void heapsort2(int* array, int length);
void generate_array(int* array, int length);
void print_array(int* array, int length);
#endif