DEV/DEV3.2/TP8/Tri/Noeud.java
2023-11-29 17:27:03 +01:00

19 lines
347 B
Java

public class Noeud{
protected float val;
protected Noeud noeudGauche;
protected Noeud noeudDroit;
public Noeud(float f){
this.val = f;
this.noeudGauche=null;
this.noeudDroit=null;
}
public void addNoeudGauche(float f){
this.noeudGauche = new Noeud(f);
}
public void addNoeudDroit(float f){
this.noeudDroit = new Noeud(f);
}
}