-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dico.java
53 lines (48 loc) · 1.56 KB
/
Dico.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import java.io.IOException;
public class Dico
{
Noeud racine ;
Dico ()
{
racine = null ;
}
public static void inserer (Dico d, String m)
{
d.racine = insererArbre (d.racine, m) ;
}
static Noeud insererArbre (Noeud n, String m)
{
if (n == null) return new Noeud (m, null, null) ;
if (m.compareTo (n.str) == 0) return n ; // le mot est deja la
if (m.compareTo (n.str) < 0)
n.filsGauche = insererArbre (n.filsGauche, m) ;
else n.filsDroit = insererArbre (n.filsDroit, m) ;
return n ;
}
public static boolean existe(Dico d, String m) {
return existeDansArbre(d.racine, m);
}
private static boolean existeDansArbre(Noeud n, String m) {
if (n == null) {
return false;
} else if (m.compareTo(n.str) == 0) {
return true;
} else if (m.compareTo(n.str) < 0) {
return existeDansArbre(n.filsGauche, m);
} else {
return existeDansArbre(n.filsDroit, m);
}
}
public static void main(Dico d ,String[] args) {
//ajouter les elements sans l element d indice 0
for (int i = 1; i < args.length; i++) {
Dico.inserer(d, args[i]);
}
// verifier l existance de l elmt a l indice 0
if (Dico.existe(d, args[0])==true) {
System.out.println("Le mot '" + args[0] + "' existe dans le dictionnaire.");
} else {
System.out.println("Le mot '" + args[0] + "' n'existe pas dans le dictionnaire.");
}
}
}