Téléverser les fichiers vers "/"

Import git
This commit is contained in:
2024-09-02 23:11:04 +02:00
commit fe64cb7aa5
3 changed files with 212 additions and 0 deletions

8
heapsort.h Normal file
View File

@@ -0,0 +1,8 @@
#ifndef __HEAPSORT__
#define __HEAPSORT__
void heapsort(int* array, int length);
void generate_array(int* array, int length);
void print_array(int* array, int length);
#endif