Blame view

projetfinal/projet.c 3.39 KB
804ad89a   Emilie10   projet
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
  
  #include "projet.h" 
  
  
  void init_dictionnaire(struct dictionnaire* D){
  	D->tetes = NULL ; 
  	D->nbelem = 0 ; 
  }
  
  void cons_dictionnaire(struct dictionnaire* D, char* fichier){
  	char word[100] ; 
  	FILE * f = fopen(fichier, "r"); 
  	if(f == NULL)
  		exit(1) ; 
  
  	while(fscanf(f, "%s", word) != EOF){
  		ajout_mot(D,word) ; 
  	}
  
  }
  
  
  void ajout_mot(struct dictionnaire* ptrD, char* MOT){
  	int tailleMot = strlen(MOT) ;
  	struct noeud* tmp = ptrD->tetes ; 
  	int i = 0, j = 0, position = 0;
  	bool sortie = false; 
  	if(tmp != NULL){
  		while(position < ptrD->nbelem && tmp[position].valeur != MOT[0]){
  			position++ ; 
  		}
  		if(position < ptrD->nbelem){
  			tmp = &(tmp[position]) ; 
  			while(!sortie){
  				if(tmp->valeur == MOT[i]){
  					i++ ; 
  					if(i < tailleMot){
  						j = 0 ;
  						struct noeud* liste = tmp->liste_noeud ; 
  						while(j< tmp->nbfils && liste[j].valeur != MOT[i])
  							j++ ; 
  						if(j < tmp->nbfils){
  							tmp = &(liste[j]) ; 
  						}
  						else
  							sortie = true ; 
  					}
  					else{
  						tmp->complet = true ; 
  						sortie = true ; 
  					}
  				}
  				else
  					sortie = true ; 
  			}		
  		}	
  	}
  	for(j = i ; j < tailleMot ; j++){
  		if(j == 0 && position >= ptrD->nbelem){
  			ptrD->nbelem +=1 ; 
  			ptrD->tetes = realloc(ptrD->tetes , ptrD->nbelem*sizeof(struct noeud)) ;
  			ptrD->tetes [ptrD->nbelem-1].valeur = MOT[j] ;
  			ptrD->tetes [ptrD->nbelem-1].nbfils  = 0 ; 
  			ptrD->tetes [ptrD->nbelem-1].liste_noeud = NULL ; 
  			if(j == tailleMot-1)
  				ptrD->tetes[ptrD->nbelem-1].complet= true ;
  			else	
  				ptrD->tetes[ptrD->nbelem-1].complet = false ; 
  			tmp = &ptrD->tetes[ptrD->nbelem-1];
  		}
  		else{
  			tmp->nbfils++ ; 
  			tmp->liste_noeud = realloc(tmp->liste_noeud, (tmp->nbfils)*sizeof(struct noeud)) ; 
  			tmp->liste_noeud[tmp->nbfils-1].valeur = MOT[j] ;
  			tmp->liste_noeud[tmp->nbfils-1].nbfils  = 0 ; 
  			tmp->liste_noeud[tmp->nbfils-1].liste_noeud = NULL ; 
  			if(j == tailleMot-1)
  				tmp->liste_noeud[tmp->nbfils-1].complet = true;
  			else	
  				tmp->liste_noeud[tmp->nbfils-1].complet = false ; 			
  			tmp = &tmp->liste_noeud[tmp->nbfils-1] ;
  		}
  	}
  
  
  }
  
  bool appartient_mot(struct dictionnaire *D, char * MOT){
  	if(D->tetes==NULL) return false ; 
  	int length = strlen(MOT) ; 
  	int i,j;
  
  	bool exit = false , found = false ;
  	struct noeud N ; 
  
  	i = 0; 
  	while(i < D->nbelem && D->tetes[i].valeur != MOT[0] )
  		i++ ; 
  	if(i==D->nbelem) return false  ;
  	if(length == 1 && D->tetes[i].complet )
  		found = true;  
  	N = D->tetes[i] ; 
  	i = 1 ; 
  
  	while(!exit && !found){
  				j = 0 ; 
  				while(j < N.nbfils && N.liste_noeud[j].valeur != MOT[i]){
  					j++ ; 
  				}
  				if(j < N.nbfils){
  					i++ ; 
  					if(i>=length && N.liste_noeud[j].complet){
  						found =  true ;
  					}
  					else{
  						if(i>=length)
  							exit = true ; 
  						else
  							N = N.liste_noeud[j] ;
  					}				
  				}
  				else{
  					exit = true ; 				
  				}
  				
  
  	}
  	
  	return found ;
  } 
  void correction(struct dictionnaire *D, char *phrase){
  	FILE *f = fopen(phrase, "r"); 
  	if(f!=NULL){
  		int nbError = 0; 
  		char mot[25];
  		while(fscanf(f,"%s",mot)!=EOF){
  			if(!appartient_mot(D,mot)){
                  printf("il y a une erreur\n");
                  printf("------------------------------------------------------------------\n");
                  printf("%s\n",mot);
                  printf("------------------------------------------------------------------\n");
  				nbError++;
  			}
  			
  		}
          printf("La phrase contenait  :  %d erreurs\n", nbError); 
  	}
  
  }