Files
2026-04-08 20:11:20 +02:00

7 lines
93 B
C

struct Noeud{
struct Noeud fils_gauche;
struct Noeud fils_droit;
};
void heapsort()