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