7 lines
93 B
C
7 lines
93 B
C
struct Noeud{
|
|
struct Noeud fils_gauche;
|
|
struct Noeud fils_droit;
|
|
};
|
|
|
|
void heapsort()
|