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