Blame view

projetfinal.c 4.59 KB
81b54ede   tvieuble   Version finale ap...
1
2
3
  #include <stdio.h>
  #include <stdlib.h>
  
76ac53a3   tvieuble   Test version avec...
4
  #define A 26
81b54ede   tvieuble   Version finale ap...
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  
  struct node {
    char lettre;
    struct cell* listeFils;
  };
  
  struct cell {
    struct node* arbre;
    struct cell* arbreSuivant;
  };
  
  void lien_listeFils(struct cell** pL) {
    struct cell* p;
    p = malloc(sizeof(struct cell));
   
    (*pL)->arbre->listeFils = p;
  }
  
  void initialisation_tab_arbre(struct node tab[]) {
76ac53a3   tvieuble   Test version avec...
24
    for(int i = 0; i < A; i++) {
81b54ede   tvieuble   Version finale ap...
25
26
27
      tab[i].lettre = 97+i; //ajout lettres minuscules
      tab[i].listeFils = NULL;
    }
81b54ede   tvieuble   Version finale ap...
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
  }
  
  void ajout_tete(char elem, struct cell** pL) {
    struct cell* p;
    p = malloc(sizeof(struct cell));
    p->arbre = malloc(sizeof(struct node));
    p->arbre->listeFils = NULL;
    p->arbre->lettre = elem;
    p->arbreSuivant = *pL;
    *pL = p;
  }
  
  struct cell ** insertion(char elem, struct cell** pL) {
  	if(((*pL) == NULL) || ((*pL)->arbre->lettre > elem)) {
  		ajout_tete(elem, pL);
  		return &(*pL)->arbre->listeFils;
  	}
  	else if((*pL)->arbre->lettre == elem) {
  		return &(*pL)->arbre->listeFils;
  	}
  	else {
  		return insertion(elem, &(*pL)->arbreSuivant);
  	}
  }
  
  
  void remplir_dico(FILE* fd, struct node tab_arbre_prcp[]) {
  
    struct cell** localisationArbre = NULL; 
    int cptmot = 0;
    char motLu[50];
76ac53a3   tvieuble   Test version avec...
59
60
61
    while(fscanf(fd, "%s", motLu)==1) {
    	int charEstUneLettre = 1;
  	int i = 0;
81b54ede   tvieuble   Version finale ap...
62
63
64
65
66
67
68
      cptmot += 1;
       if((motLu[0] >= 'A') && (motLu[0] <= 'Z')) {
         localisationArbre = &tab_arbre_prcp[motLu[0]-65].listeFils;
       }
       else if((motLu[0] >= 'a') && (motLu[0] <= 'z')) {
         localisationArbre = &tab_arbre_prcp[motLu[0]-97].listeFils;
       }
81b54ede   tvieuble   Version finale ap...
69
       else {
76ac53a3   tvieuble   Test version avec...
70
71
72
         printf("Erreur remplissage dico : L'un des caracteres n'est pas une lettre\n");
         printf("Mot : %s incorrect\n", motLu);
         charEstUneLettre = 0;
81b54ede   tvieuble   Version finale ap...
73
       }
76ac53a3   tvieuble   Test version avec...
74
75
76
77
78
  	 while((motLu[i] != '\0') && (charEstUneLettre == 1)) {
    		i += 1;
  		localisationArbre = insertion(motLu[i], localisationArbre);
  	 }
     }
81b54ede   tvieuble   Version finale ap...
79
80
  	printf("\n");
  	fclose(fd);
76ac53a3   tvieuble   Test version avec...
81
    	printf("%d mots inseres dans le dictionnaire.\n", cptmot);
81b54ede   tvieuble   Version finale ap...
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
  }
  
  struct cell** test_mot(char mot, struct cell** localisation, int* verif) {
  
    if((*localisation == NULL) || (*localisation)->arbre->lettre > mot) {
      *verif = 0;
      return NULL;
    }
    if((*localisation)->arbre->lettre == mot) {
      return &(*localisation)->arbre->listeFils;
    }
    else {
      return test_mot(mot, &(*localisation)->arbreSuivant, verif);
    }
  }
  
  void correction_txt(FILE* fd, struct node tab_arbre_prcp[]) {
    struct cell** localisationArbre = NULL;
    int verif;
    char motLu[50];
    while(fscanf(fd, "%s", motLu)==1) {
        verif = 1;
        int i = 0;
        if((motLu[0] >= 'A') && (motLu[0] <= 'Z')) {
          localisationArbre = &tab_arbre_prcp[motLu[0]-65].listeFils;
        }
        else if((motLu[0] >= 'a') && (motLu[0] <= 'z')) {
          localisationArbre = &tab_arbre_prcp[motLu[0]-97].listeFils;
        }
81b54ede   tvieuble   Version finale ap...
111
        else {
76ac53a3   tvieuble   Test version avec...
112
113
          printf("Erreur correction txt : L'un des caracteres n'est pas une lettre\n");
          verif = 0;
81b54ede   tvieuble   Version finale ap...
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
        }
        while((verif == 1) && (motLu[i] != '\0')) {
          i += 1;
          localisationArbre = test_mot(motLu[i], localisationArbre, &verif);
        }
        if(verif == 0) printf("Mot %s non present dans le dicitonnaire.\n", motLu);
      }
      fclose(fd);
  } 
  
  void correction_mot(struct node tab_arbre_prcp[]) {
    struct cell** localisationArbre = NULL;
    int verif;
    char motLu[50];
    printf("Entrez un mot ou une phrase a corriger : \n(0 pour quitter)\n");
    while(scanf("%s", motLu)==1) {
        if(motLu[0]=='0') return;
        verif = 1;
        int i = 0;
        if((motLu[0] >= 'A') && (motLu[0] <= 'Z')) {
          localisationArbre = &tab_arbre_prcp[motLu[0]-65].listeFils;
        }
        else if((motLu[0] >= 'a') && (motLu[0] <= 'z')) {
          localisationArbre = &tab_arbre_prcp[motLu[0]-97].listeFils;
        }
81b54ede   tvieuble   Version finale ap...
139
        else {
76ac53a3   tvieuble   Test version avec...
140
141
          printf("Erreur correction txt : L'un des caracteres n'est pas une lettre\n");
          verif = 0;
81b54ede   tvieuble   Version finale ap...
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
        }
        while((verif == 1) && (motLu[i] != '\0')) {
          i += 1;
          localisationArbre = test_mot(motLu[i], localisationArbre, &verif);
        }
        if(verif == 0) printf("Mot : %s non present dans le dicitonnaire.\n", motLu);
        else printf("Mot : %s correct\n", motLu);
      }
  } 
  
  
  int main(int argc, char* argv[]) {
    FILE* dico = NULL;
    FILE* txt = NULL;
    struct node tab_arbre[A];
    
    if(argc>2) {
      dico = fopen(argv[1], "r");
      txt = fopen(argv[2], "r");
    }
    else {
      dico = NULL;
      txt = NULL;
    }
    if ((dico == NULL) || (txt == NULL)) {
          printf("Erreur : il manque un ou plusieurs fichiers !\n");
          return 1;
      }
    initialisation_tab_arbre(tab_arbre);
    remplir_dico(dico, tab_arbre); //on suppose qu'il n'y a pas d'accents dans le dictionnaire
    correction_txt(txt, tab_arbre);
    correction_mot(tab_arbre);
  
    return 0;
  }