-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProjeto4.c
385 lines (362 loc) · 9.99 KB
/
Projeto4.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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
/*
PROJETO 4
Professor: Díbio Leandro Borges
Aluno 1: Ian Ferreira dos Santos - Matrícula: 10/0050280
Aluno 2: Rodrigo Trevizol Viam Gaddini - Matrícula: 10/0055079
*/
#include<stdlib.h>
#include<stdio.h>
#include<string.h>
#include<time.h>
#include<math.h>
#include<ctype.h>
#define MAX 10
#define teste perror("TESTE!");
/* Listas encadeadas */
typedef struct listaL {
char letra;
struct listaL *prox;
} ListaL;
typedef struct listaP {
char *palavra;
int numL;
int arquivos[MAX + 1];
int qtdearq;
struct listaP *prox;
} ListaP;
/* Protótipos das funções */
void arq_rgstr(char [][10], int);
ListaP *ltr_lst_crt(FILE *, ListaP *, int);
void lst_liberaL(ListaL *);
ListaP *lst_criaP();
ListaL *lst_criaL();
ListaL *lst_insereL(ListaL *, char);
char *lstLvetor (ListaL *, int);
ListaP *lst_procuraP (ListaP *, char *, int);
void lst_add(ListaP *, int);
ListaP *lst_insereP(ListaP *, char *, int, int);
ListaP *lst_inserePesp(ListaP *, char *, int);
void arq_cria_IndInvert(ListaP *, FILE *);
void lst_liberaP(ListaP *);
int arq_leitura(FILE *, ListaP **) ;
int arq_busca(ListaP *, int);
int numtoprimo(int);
int calck(char *, int, int);
/* Programa principal */
int main () {
FILE *f;
char nome[MAX][10], plv[30];
ListaP *LP, **hashing, *p;
int i, qtde, primo, chave, flag;
/* PRIMEIRA PARTE */
/* Chama uma função para registrar os nomes dos arquivos na matriz por referência */
arq_rgstr(nome, MAX);
LP = lst_criaP();
/* Abertura de arquivo, um por vez para catalogar palavras */
for (i = 0; i < MAX; i++) {
f = fopen(nome[i], "r");
/* Leitura e escrita */
if (f != NULL) LP = ltr_lst_crt(f, LP, i + 1);
/* Fecha o arquivo processado somente leitura */
fclose(f);
}
f = fopen("IndInvert.txt", "w");
arq_cria_IndInvert(LP, f);
fclose(f);
lst_liberaP(LP);
/* FIM DA PRIMEIRA PARTE */
/* SEGUNDA PARTE */
f = fopen("IndInvert.txt", "r");
qtde = arq_leitura(f, &LP);
fclose(f);
/* FIM DA SEGUNDA PARTE */
/* TERCEIRA PARTE */
primo = numtoprimo(qtde);
hashing = calloc(primo,sizeof(ListaP *));
p = LP;
do {
chave = calck(p->palavra, p->numL, primo);
LP = p->prox;
p->prox = hashing[chave];
hashing[chave] = p;
p = LP;
} while (p!=NULL);
/* FIM DA TERCEIRA PARTE */
/* QUARTA PARTE */
do {
printf("Bem-vindo! Para sair digite $\n");
printf("Pesquisar: ");
fflush(stdin);
scanf("%s", plv);
if (plv[0] != '$') {
qtde = strlen(plv);
for(i = 0; i < qtde; i++) {
plv[i] = tolower(plv[i]);
}
chave = calck(plv, qtde, primo);
flag = 0;
for(p = hashing[chave]; p != NULL; p = p->prox) {
if(!strcmp(p->palavra, plv)) {
flag = 1;
printf("Palavra encontrada nos arquivos:\n");
for(i = 0; i < p->qtdearq; i++) {
printf("Doc%d.txt ", p->arquivos[i]);
}
printf("\n");
break;
}
}
if (flag == 0) printf("Palavra nao encontrada nos arquivos.\n");
}
} while (plv[0] != '$');
/* FIM DA QUARTA PARTE */
for(i = 0; i < primo; i++) {
if (hashing[i] != NULL) lst_liberaP(hashing[i]);
}
return 0;
}
/* Funções */
/* Função mais complexa: faz leitura e cria lista de letras */
int calck(char *plv, int N, int primo){
int key = 0, i;
for (i = 0; i < N; i++) {
key = key + (*(plv+i));
}
return (key % primo);
}
ListaP *ltr_lst_crt(FILE *f, ListaP *D, int i) {
int numletras;
char L, *plv;
ListaP *resultado;
ListaL *temp;
/* Leitura até o final */
while (!feof(f)) {
/* Inicializa lista de letras */
if(feof(f)) break;
temp = lst_criaL();
/* Leitura de uma palavra */
numletras = 0;
L = getc(f);
/* Verifica se o caractere coletado é alfanumérico */
if (isalnum(L)) {
temp = lst_insereL(temp, L);
do {
L = getc(f);
if (isalnum(L) != 0) {
temp = lst_insereL(temp, L);
}
numletras++;
} while(isalnum(L) != 0);
if (numletras != 0) {
/* Converte lista de letras em vetor de caracteres */
plv = lstLvetor(temp, numletras);
/* Procura na lista */
resultado = lst_procuraP(D, plv, numletras);
/* Se achar, modifica contador */
if (resultado != NULL) {
if (arq_busca(resultado, i) != 0) lst_add(resultado, i);
}
/* Se não, adiciona novo elemento */
else D = lst_insereP(D, plv, numletras, i);
}
/* Apaga lista de letras temporária */
lst_liberaL(temp);
/* Libera vetor temporário de palavra */
free(plv);
}
}
return D;
}
void arq_rgstr(char nome[][10], int max) {
int i;
/* Registrar arquivos com numeracao até 10 */
if (max <= 9) {
/* Inicia de 0 até 9 */
for (i = 0; i < 9; i++) {
nome[i][0] = 'd';
nome[i][1] = 'o';
nome[i][2] = 'c';
nome[i][3] = i+49;
nome[i][4] = '.';
nome[i][5] = 't';
nome[i][6] = 'x';
nome[i][7] = 't';
nome[i][8] = '\0';
}
}
/* Registrar arquivos com numeracao maior que 10 */
else if (max > 9) {
/* Para um algarismo da numeração */
for (i = 0; i < 9; i++) {
nome[i][0] = 'd';
nome[i][1] = 'o';
nome[i][2] = 'c';
nome[i][3] = i+49;
nome[i][4] = '.';
nome[i][5] = 't';
nome[i][6] = 'x';
nome[i][7] = 't';
nome[i][8] = '\0';
}
/* Para dois algarismos da numeração */
for (i = 9; i < max; i++) {
nome[i][0] = 'd';
nome[i][1] = 'o';
nome[i][2] = 'c';
nome[i][3] = ((i+1) / 10) + 48;
nome[i][4] = ((i+1) % 10) + 48;
nome[i][5] = '.';
nome[i][6] = 't';
nome[i][7] = 'x';
nome[i][8] = 't';
nome[i][9] = '\0';
}
}
}
void lst_liberaL(ListaL *lis) {
ListaL *p;
p = lis;
while (p != NULL) {
ListaL *t = p->prox;
free(p);
p = t;
}
}
ListaP *lst_criaP() {
return NULL;
}
ListaL *lst_criaL() {
return NULL;
}
ListaL *lst_insereL(ListaL *lis, char L) {
ListaL *novo;
novo = (ListaL *) malloc(sizeof(ListaL));
novo->letra = L;
novo->prox = lis;
return novo;
}
char *lstLvetor (ListaL *lis, int numletras) {
char *plvr;
plvr = (char *) malloc((numletras+1)*sizeof(char));
ListaL *p;
int i = numletras - 1;
for (p = lis; p != NULL; p = p->prox) {
*(plvr+i) = tolower(p->letra);
i--;
}
*(plvr+numletras) = '\0';
return plvr;
}
ListaP *lst_procuraP (ListaP *lis, char *plv, int numletras) {
ListaP *p;
if (lis == NULL) return NULL;
for (p = lis; p != NULL; p = p->prox) {
if (p->numL == numletras) {
if (!strcmp(p->palavra, plv))
return p;
}
}
return NULL;
}
void lst_add(ListaP *p, int i) {
p->arquivos[p->qtdearq] = i;
p->qtdearq++;
}
ListaP *lst_insereP(ListaP *lis, char *plv, int numletras, int i) {
ListaP *novo;
novo = (ListaP *) malloc(sizeof(ListaP));
novo->palavra = (char *) malloc((numletras+1)*sizeof(char));
strcpy(novo->palavra, plv);
novo->arquivos[0] = i;
novo->qtdearq = 1;
novo->numL = numletras;
novo->prox = lis;
return novo;
}
ListaP *lst_inserePesp(ListaP *lis, char *plv, int numletras) {
ListaP *novo;
novo = (ListaP *) malloc(sizeof(ListaP));
novo->palavra = (char *) malloc((numletras+1)*sizeof(char));
strcpy(novo->palavra, plv);
novo->qtdearq = 0;
novo->numL = numletras;
novo->prox = lis;
return novo;
}
void arq_cria_IndInvert(ListaP *LP, FILE *f) {
int j;
ListaP *p;
for(p = LP; p != NULL; p = p->prox) {
fprintf(f, "%s ", p->palavra);
for (j = 0; j < p->qtdearq; j++) {
fprintf(f, "%d ", p->arquivos[j]);
}
fprintf(f, "\n");
}
}
void lst_liberaP(ListaP *lis) {
ListaP *p;
p = lis;
while (p != NULL) {
ListaP *t = p->prox;
free(p->palavra);
free(p);
p = t;
}
}
int arq_leitura(FILE *f, ListaP **LP) {
char L, *plv;
int numletras, palavras = 0;
ListaL *temp;
ListaP *D;
D = lst_criaP();
while (!feof(f)) {
if(feof(f)) break;
numletras = 0;
temp = lst_criaL();
do {
L = getc(f);
if(isalpha(L) != 0) {
temp = lst_insereL(temp, L);
numletras++;
}
} while ((L != ' ')&& (L != EOF));
plv = lstLvetor(temp, numletras);
if (numletras != 0) palavras++;
lst_liberaL(temp);
D = lst_inserePesp(D, plv, numletras);
do {
L = getc(f);
if (isdigit(L)){
if(L=='1'){
L = getc(f);
if(L=='0'){
lst_add(D, 10);
} else lst_add(D, 1);
} else lst_add(D, L-48);
}
} while ((L != '\n') && (L != EOF));
}
(*LP) = D;
return palavras;
}
int arq_busca(ListaP *p, int j) {
int i;
for (i = 0; i < MAX + 1; i++) {
if (j == p->arquivos[i]) return 0;
}
return 1;
}
int numtoprimo(int N) {
int i, prim=0, flag;
do{
flag=0;
for(i=2;i<=sqrt(N);i++){
if((N%i) == 0)flag++;
if(flag>1) break;
}
if(flag==1)prim=N;
else N++;
} while (prim==0);
return prim;
}