Exemplo n.º 1
0
 public string encode(char Lettre)
 {
     if (FilsGauche.getMot() == Lettre)
     {
         return("0");
     }
     else
     {
         return("1" + FilsDroit.encode(Lettre));
     }
 }