class Noeud: """un noeud d'une arborescence""" def __init__(self, v, f): self.valeur = v self.fils = f