Files
TD1_DEV51_Qualite_Algo/heapsort.h

9 lines
178 B
C
Raw Normal View History

#ifndef __HEAPSORT__
#define __HEAPSORT__
2025-09-10 16:32:27 +02:00
void heapsort2(int* array, int length);
void generate_array(int* array, int length);
void print_array(int* array, int length);
#endif