class Noeud: """un noeud d'un arbre binaire""" def __init__(self, g, v, d): self.gauche = g self.valeur = v self.droit = d