Skip to content
Snippets Groups Projects
Select Git revision
  • 1416359bb4d72dbc18bc74307c7137f2680af8aa
  • master default protected
2 results

heapsort.h

Blame
  • 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