-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmotcache.c
229 lines (207 loc) · 6.98 KB
/
motcache.c
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
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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
/**
Il s'agit d'un programme de résolution de mots cachés en C
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define TAILLE_GRILLE 12
#define TAILLE_MOTS 20
#define MAX_MOTS 500
/**
Ouvrir un fichier.
@param nomFichier: le nom de fichier
@return le fichier
*/
FILE* ouvrirFichier(char* nomFichier);
/**
Obtenir le contenu du fichier (la grille des lettres et la liste des mots).
@param grille: la grille
@param listeMots: la liste de mots
@param tailleListeMots: la taille de la liste des mots
@param fichier: le fichier
*/
void obtenirContenu(char grille[][TAILLE_GRILLE], char listeMots[MAX_MOTS][TAILLE_MOTS], int* tailleListeMots, FILE* fichier);
/**
Chercher un mot dans la grille
@param mot: le mot à chercher
@param grille: la grille des lettres
@param matrice: matrice des lettres de la grille
*/
void chercher(const char* mot, char grille[][TAILLE_GRILLE], int matrice[TAILLE_GRILLE][TAILLE_GRILLE]);
/**
Extraire un mot à partir d'une position dans la grille
@param mot le mot
@param tailleMot la taille du mot
@param grille la grille des mots
@param i la ligne
@param j la colonne
@return retourne la direction dans laquelle le mot à été trouvé ou 0 sinon.
*/
int extraireMot(char* mot, const char* motListe,int tailleMot, char grille[][TAILLE_GRILLE], int ligne, int colonne);
/**
trouver le mot dans la grille.
@param motCache: le mot caché
@param grille: la grille des lettres
@param listeMots: la liste des mots
@param tailleMot: la taille du mot
@param matrice: matrice des lettres de la grille
*/
void trouverMotCache(char** motCache, char grille[][TAILLE_GRILLE], char listeMots[MAX_MOTS][TAILLE_MOTS], int tailleMot, int matrice[TAILLE_GRILLE][TAILLE_GRILLE]);
/**
trouver un mot a partir d'une position et une direction.
@param mot le mot extrait
@param tailleMot la taille du mot à trouver.
@param grille la grille des lettres
@param ligne la ligne
@param colonne la colonne
@param direction la direction dans laquelle le mot est extrait (haut,bas,gauche,droite)
*/
void trouverParDirection(char** mot, int tailleMot, char grille[][TAILLE_GRILLE], int ligne, int colonne, int direction);
/**
Mettre à jour la matrice.
@param matrice la matrice
@param ligne la ligne
@param colonne la colonne
@param tailleMot la taille du mot
@param direction la direction du mot
*/
void mettreAjour(int matrice[TAILLE_GRILLE][TAILLE_GRILLE], int ligne, int colonne, int tailleMot, int direction);
FILE* ouvrirFichier(char* nomFichier) {
FILE* fichier = fopen(nomFichier, "r");
if(fichier == NULL) {
printf("Le fichier n\'existe pas\n");
exit(-1);
}
return fichier;
}
void obtenirContenu(char grille [][TAILLE_GRILLE], char listeMots[MAX_MOTS][TAILLE_MOTS], int* tailleListeMots, FILE* fichier) {
char buffer[256];
for(int i = 0; i < TAILLE_GRILLE; ++i) {
fgets(buffer, sizeof(buffer), fichier);
strcpy(grille[i], buffer);
}
int taille = 0;
while(fgets(buffer, 256, fichier) != NULL) {
int i = 0;
do{
i++;
} while (buffer[i] != '\n') ;
buffer[i] = '\0';
if(buffer[0] != '\0') {
strcpy(listeMots[taille++], buffer);
}
}
*tailleListeMots = taille;
}
void chercher(const char* mot, char grille[][TAILLE_GRILLE], int matrice[TAILLE_GRILLE][TAILLE_GRILLE]) {
char premier = mot[0];
int estTrouve = 0;
char* motTrouve = NULL;
for(int i = 0; i < TAILLE_GRILLE && !estTrouve; i++) {
for(int j = 0; j < TAILLE_GRILLE && !estTrouve; j++) {
if(premier == grille[i][j]) {
estTrouve = extraireMot(motTrouve, mot, (int)strlen(mot), grille, i, j);
if(estTrouve) {
mettreAjour(matrice, i, j, (int) strlen(mot), estTrouve);
}
}
}
}
}
int extraireMot(char* mot, const char* motListe , int n, char grille[][TAILLE_GRILLE], int ligne, int colonne) {
int haut = ligne+1;
int gauche = colonne+1;
int bas = TAILLE_GRILLE-ligne;
int droite = TAILLE_GRILLE-colonne;
if(haut>=n) {
trouverParDirection(&mot, n, grille, ligne, colonne, 1);
if(strcmp(mot, motListe) == 0)
return 1;
}
if(gauche>=n ) {
trouverParDirection(&mot, n, grille, ligne, colonne, 2);
if(strcmp(mot, motListe) == 0)
return 2;
}
if(bas>=n) {
trouverParDirection(&mot, n, grille, ligne, colonne, 3);
if(strcmp(mot, motListe) == 0)
return 3;
}
if(droite>=n) {
trouverParDirection(&mot, n, grille, ligne, colonne, 4);
if(strcmp(mot, motListe) == 0)
return 4;
}
return 0;
}
void trouverParDirection(char** mot, int tailleMot, char grille[][TAILLE_GRILLE], int ligne, int colonne, int direction) {
*mot = (char*) malloc((tailleMot+5)*sizeof(char));
int cpt=0;
switch(direction) {
case 1: for(int i = ligne; i > ligne-tailleMot; i--) {
(*mot)[cpt++] = grille[i][colonne];
}
break;
case 2: for(int i = colonne; i > colonne-tailleMot; i--) {
(*mot)[cpt++] = grille[ligne][i];
}
break;
case 3: for(int i = ligne; i <= ligne+tailleMot-1; i++) {
(*mot)[cpt++] = grille[i][colonne];
}
break;
case 4: for(int i = colonne; i <= colonne+tailleMot-1; i++) {
(*mot)[cpt++] = grille[ligne][i];
}
break;
}
(*mot)[cpt] = '\0';
}
void mettreAjour(int matrice[TAILLE_GRILLE][TAILLE_GRILLE], int ligne, int colonne, int tailleMot, int direction) {
switch(direction) {
case 1: for(int i = ligne; i > ligne-tailleMot; i--) {
matrice[i][colonne] = 1;
}
break;
case 2: for(int i = colonne; i > colonne - tailleMot; i--) {
matrice[ligne][i] = 1;
}
break;
case 3: for(int i = ligne; i <= ligne+tailleMot-1; i++) {
matrice[i][colonne] = 1;
}
break;
case 4: for(int i = colonne; i <= colonne+tailleMot-1; i++) {
matrice[ligne][i] = 1;
}
break;
}
}
void trouverMotCache(char** motCache, char grille[][TAILLE_GRILLE], char listeMots[MAX_MOTS][TAILLE_MOTS], int n, int matrice[TAILLE_GRILLE][TAILLE_GRILLE]) {
int x = 0;
for(int i = 0; i < n; i++) {
chercher(listeMots[i], grille, matrice);
}
*motCache = (char*)malloc(TAILLE_GRILLE*TAILLE_GRILLE*sizeof(char));
for(int i = 0; i < TAILLE_GRILLE; i++) {
for(int j = 0; j < TAILLE_GRILLE; j++) {
if(matrice[i][j] == 0) {
(*motCache)[x++] = grille[i][j];
}
}
}
(*motCache)[x] = '\0';
}
int main(int argc, char* argv[]) {
char grille [TAILLE_GRILLE][TAILLE_GRILLE];
char listeMots[MAX_MOTS][TAILLE_MOTS];
int matrice[TAILLE_GRILLE][TAILLE_GRILLE] = {0};
int tailleListeMots = 0;
char* motCache = NULL;
FILE* fichier = ouvrirFichier(argv[1]);
obtenirContenu(grille, listeMots, &tailleListeMots, fichier);
trouverMotCache(&motCache, grille, listeMots, tailleListeMots, matrice);
printf("%s\n", motCache);
return 0;
}