Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
}
/*****************************************************************************/
-AVL equidroit(AVL p, int *verif) // quand on entre dans la fonction, verif = 1
+AVL equidroit(AVL p, int *verif) // quand on entre dans la fonction, *verif = 1
{
switch (p->deseq) {
case -1:
if (p == NULL) {
return insere_fin(mot, i);
} else if (p->lettre == mot[i]) {
- if (mot[i]) {
+ if (mot[i] != '\0') {
p->fils = insere(p->fils, mot, i + 1);
} else {
printf("The word is already here\n");
return p;
}
-
/*****************************************************************************/
/* Affichage par ordre alphabetique de tous les mots stockes dans l'arbre */
void affiche(NOEUD * p, char *mot, int i)