public class Noeud { int valeur; Noeud gauche, droit; public Noeud(int valeur) { this.valeur = valeur; this.gauche = this.droit = null; } }