def postfixe(self, L = []):
    for child in self.enfants:
        child.postfixe(L)
    L.append(self.root)
    return L