-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhash_before_cleaning.txt
439 lines (381 loc) · 12.5 KB
/
hash_before_cleaning.txt
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
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
#include <stdbool.h>
#include <stddef.h>
#include <string.h>
#include <stdio.h>
#include "lista.h"
#include "hash.h"
/*
#define CAP_INICIAL 50ul
#define FACTOR_NVA_CAP 2ul
#define FACTOR_CARGA_MAX 2.5
#define FACTOR_CARGA_MIN 0.2
#define LARGO_MAX_CLAVES 40ul
*/
const int CAP_INICIAL = 50;
const int FACTOR_NVA_CAP = 2;
const double FACTOR_CARGA_MAX = 2.5;
const double FACTOR_CARGA_MIN = 0.2;
const int LARGO_MAX_CLAVES = 40;
//#define FUN_HASHING djb2 // Recuperar
// Estructuras
typedef struct hash
{
void **arreglo;
long unsigned int capacidad;
long unsigned int carga;
hash_destruir_dato_t funcion_destruir_dato;
} hash_t;
typedef struct hash_iter
{
const hash_t *hash;
int nro_elemento;
int pos_en_arreglo;
lista_iter_t *iterador_lista_actual;
} hash_iter_t;
typedef struct campo
{
char *clave;
void *dato;
} campo_t;
typedef bool (*visitar)(void *dato, void *extra);
// Funcion de hashing DJB2
// https://stackoverflow.com/questions/7666509/hash-function-for-string
unsigned long djb2(const char *str)
{
unsigned long hash = 5381;
int c;
while ((c = *str++))
hash = ((hash << 5) + hash) + c; /* hash * 33 + c */
return hash;
}
// Primitivas y funciones
campo_t *campo_crear(const char *clave, void *dato)
{
campo_t *campo = malloc(sizeof(campo_t));
if (campo == NULL)
return NULL;
campo->clave = malloc(sizeof(char) * LARGO_MAX_CLAVES); // !!!!!!!!!!! clave no tiene que tener largo maximo
strcpy(campo->clave, clave);
campo->dato = dato;
return campo;
}
hash_t *hash_crear(hash_destruir_dato_t destruir_dato)
{
hash_t *hash = malloc(sizeof(hash_t));
if (hash == NULL)
return NULL;
void **arreglo_dinamico = malloc(sizeof(lista_t *) * CAP_INICIAL);
if (arreglo_dinamico == NULL)
return NULL;
hash->arreglo = arreglo_dinamico;
hash->capacidad = CAP_INICIAL;
hash->carga = 0;
hash->funcion_destruir_dato = destruir_dato;
for (int i = 0; i < hash->capacidad; i++)
{
hash->arreglo[i] = lista_crear();
}
return hash;
}
// Funcion auxiliar
// Retorna un iterador posicionado en la posicion de la lista de la clave buscada
// El iterador queda al final si no se encuentra la clave
lista_iter_t *aux_posicionar_iterador(const hash_t *hash, const char *clave)
{
long unsigned int posicion = djb2(clave) % hash->capacidad;
lista_iter_t *iterador = lista_iter_crear(hash->arreglo[posicion]);
campo_t *campo;
while (!lista_iter_al_final(iterador))
{
campo = lista_iter_ver_actual(iterador);
if (strcmp(campo->clave, clave) == 0)
{
return iterador;
}
lista_iter_avanzar(iterador);
}
return iterador;
}
bool hash_pertenece(const hash_t *hash, const char *clave)
{
lista_iter_t *iterador = aux_posicionar_iterador(hash, clave); // No me convence este función. Revisar
bool resultado = !lista_iter_al_final(iterador);
lista_iter_destruir(iterador);
return resultado;
}
void *hash_obtener(const hash_t *hash, const char *clave)
{
if (!hash_pertenece(hash, clave))
return NULL;
lista_iter_t *iterador = aux_posicionar_iterador(hash, clave); // No me convence este función. Revisar
campo_t *campo = lista_iter_ver_actual(iterador);
void *dato = campo->dato;
lista_iter_destruir(iterador);
return dato;
}
size_t hash_cantidad(const hash_t *hash)
{
return hash->carga;
}
void des_campo(void *campo)
{
if (campo == NULL)
{
return;
}
campo_t *dato = campo;
free(dato->clave);
free(dato);
}
bool destruir_dato(void *dato, void *extra)
{
hash_t *hash = extra;
if (!dato)
{
return false;
}
campo_t *campo = dato;
hash->funcion_destruir_dato(campo->dato);
return true;
}
void destruir_listas(hash_t *hash)
{
for (size_t i = 0; i < hash->capacidad; i++)
{
lista_t *lista = hash->arreglo[i];
if (!lista_esta_vacia(lista))
{
if (hash->funcion_destruir_dato != NULL)
{
lista_iterar(hash->arreglo[i], destruir_dato, hash);
}
lista_destruir(hash->arreglo[i], des_campo);
}
else
{
lista_destruir(hash->arreglo[i], NULL);
}
}
}
void borrar_campo(hash_t *hash, const char *clave)
{
long unsigned int posicion = djb2(clave) % hash->capacidad;
campo_t *campo;
lista_t *lista = hash->arreglo[posicion];
lista_iter_t *iterador = lista_iter_crear(lista);
while (!lista_iter_al_final(iterador))
{
campo = lista_iter_ver_actual(iterador);
if (strcmp(campo->clave, clave) == 0)
{
des_campo(campo);
lista_iter_borrar(iterador);
lista_iter_destruir(iterador);
return;
}
lista_iter_avanzar(iterador);
}
lista_iter_destruir(iterador);
return;
}
void hash_destruir(hash_t *hash){
//printf("Destruyendo: cap hash: %lu\n", hash->capacidad);
destruir_listas(hash);
free(hash->arreglo);
free(hash);
}
bool guardar_campo(void* dato, void* extra){
campo_t* campo = dato;
if (campo == NULL) return false;
hash_t* hash = extra;
long unsigned int posicion = djb2(campo->clave) % hash->capacidad;
lista_t* lista = hash->arreglo[posicion];
lista_insertar_ultimo(lista, campo);
return true;
}
bool hash_redimensionar(hash_t *hash, long unsigned int nueva_capacidad){
//printf("Nueva cap: %lu\n", nueva_capacidad);
if (nueva_capacidad < CAP_INICIAL) nueva_capacidad = CAP_INICIAL;
void **nuevo_arreglo = malloc(sizeof(lista_t *) * nueva_capacidad);
if (nuevo_arreglo == NULL) return false;
void** viejo_arreglo = hash->arreglo;
long unsigned int vieja_cap = hash->capacidad;
lista_t *lista_actual;
hash->capacidad = nueva_capacidad;
hash->arreglo = nuevo_arreglo;
for (int i = 0; i < hash->capacidad; i++){
hash->arreglo[i] = lista_crear();
}
for (int i = 0; i < vieja_cap; i++)
{
lista_actual = viejo_arreglo[i];
if (!lista_esta_vacia(lista_actual)) lista_iterar(lista_actual, guardar_campo, hash);
lista_destruir(lista_actual, NULL);
}
free(viejo_arreglo);
return true;
}
bool hash_redimensionar_2(hash_t *hash, long unsigned int nueva_capacidad){
printf("Linea 132 --- Redimencionando\n");
printf("133 Carga: %li - Capacidad: %li -- NuevaCap: %li\n", hash->carga, hash->capacidad, nueva_capacidad);
void **nuevo_arreglo = malloc(sizeof(lista_t *) * hash->capacidad * FACTOR_NVA_CAP);
if (nuevo_arreglo == NULL)
{
printf("no arreglo no\n");
return false;
}
size_t nueva_cap = hash->capacidad * FACTOR_NVA_CAP;
hash->capacidad = nueva_cap;
for (size_t i = 0; i < hash->capacidad; i++)
{
nuevo_arreglo[i] = lista_crear();
}
for (size_t i = 0; i < hash->capacidad; i++)
{
lista_t *lista = hash->arreglo[i];
if (!lista_esta_vacia(lista))
{
lista_iter_t *iter = lista_iter_crear(lista);
while (!lista_iter_al_final(iter))
{
campo_t *campo = lista_iter_ver_actual(iter);
size_t posicion_nueva = djb2(campo->clave) % hash->capacidad;
lista_insertar_ultimo(nuevo_arreglo[posicion_nueva], campo);
// Es lo mismo insertar_primero o insertar_ultimo?
lista_iter_avanzar(iter);
}
lista_iter_destruir(iter);
}
}
//destruir_listas(hash); ??????????
free(hash->arreglo);
// Eliminar viejo arreglo
//no habria que destruir todo lo que tiene adentro tambien??
hash->arreglo = nuevo_arreglo;
return true;
}
void *hash_borrar(hash_t *hash, const char *clave)
{
if (!hash_pertenece(hash, clave))
return NULL;
void *dato = hash_obtener(hash, clave);
borrar_campo(hash, clave);
hash->carga--;
if (hash->carga / hash->capacidad < FACTOR_CARGA_MIN && hash->capacidad > CAP_INICIAL)
{
hash_redimensionar(hash, hash->capacidad / FACTOR_NVA_CAP);
}
return dato;
}
bool hash_guardar(hash_t *hash, const char *clave, void *dato)
{
if (hash_pertenece(hash, clave)){
void *dato_reemplazado = hash_borrar(hash, clave);
if (hash->funcion_destruir_dato != NULL){
hash_destruir_dato_t funcion_dest = hash->funcion_destruir_dato;
funcion_dest(dato_reemplazado);
//hash->funcion_destruir_dato(dato_reemplazado); // ACORTAR A UN LINEA. ALGO ASÍ
}
}
long unsigned int posicion = djb2(clave) % hash->capacidad;
//printf("Posicion: %lu para clave: %s\n", posicion, clave);
campo_t *campo_agregado = campo_crear(clave, dato);
lista_insertar_ultimo(hash->arreglo[posicion], campo_agregado);
hash->carga++;
if (hash->carga / hash->capacidad > FACTOR_CARGA_MAX){
hash_redimensionar(hash, hash->capacidad * FACTOR_NVA_CAP);
}
return true;
}
/* Iterador del hash */
// Crea iterador
hash_iter_t *hash_iter_crear(const hash_t *hash)
{
hash_iter_t *iterador = malloc(sizeof(hash_iter_t));
if (iterador == NULL)
return NULL;
iterador->hash = hash;
iterador->pos_en_arreglo = 0;
if (hash->carga == 0) {
iterador->iterador_lista_actual = NULL;
iterador->pos_en_arreglo = -1;
return iterador;
}
lista_t* lista_pos_arreglo = iterador->hash->arreglo[iterador->pos_en_arreglo];
while(lista_esta_vacia(lista_pos_arreglo)){
iterador->pos_en_arreglo++;
lista_pos_arreglo = iterador->hash->arreglo[iterador->pos_en_arreglo];
}
iterador->iterador_lista_actual = lista_iter_crear(iterador->hash->arreglo[iterador->pos_en_arreglo]);
iterador->nro_elemento = 0;
return iterador;
}
// Avanza iterador
bool hash_iter_avanzar(hash_iter_t *iter){
if (hash_iter_al_final(iter)) return false;
//lista_t* lista_actual = iter->hash->arreglo[iter->pos_en_arreglo];
//lista_iter_t* iterador_actual = iter->iterador_lista_actual;
lista_iter_avanzar(iter->iterador_lista_actual);
if (lista_iter_al_final(iter->iterador_lista_actual)){
//printf("trigger 370\n");
//lista_iter_destruir(iter->iterador_lista_actual);
iter->pos_en_arreglo++;
while(lista_esta_vacia(iter->hash->arreglo[iter->pos_en_arreglo])){
//printf(" 374 pos_arreglo: %d\n", iter->pos_en_arreglo);
iter->pos_en_arreglo++;
if (iter->pos_en_arreglo == iter->hash->capacidad){
iter->pos_en_arreglo = -1;
return true;
}
//lista_actual = iter->hash->arreglo[iter->pos_en_arreglo];
lista_iter_destruir(iter->iterador_lista_actual);
iter->iterador_lista_actual = lista_iter_crear(iter->hash->arreglo[iter->pos_en_arreglo]);
}
}
return true;
}
bool hash_iter_avanzar_2(hash_iter_t *iter)
{ // REVISAR
if (hash_iter_al_final(iter))return false;
if (lista_iter_al_final(iter->iterador_lista_actual)){
//printf("HOLA\n");
iter->pos_en_arreglo++;
//printf("361 Pos actual en arreglo: %u\n", iter->pos_en_arreglo);
while (lista_esta_vacia(iter->hash->arreglo[iter->pos_en_arreglo])){
//printf("364 Pos actual en arreglo: %u\n", iter->pos_en_arreglo);
iter->pos_en_arreglo++;
}
free(iter->iterador_lista_actual);
iter->iterador_lista_actual = lista_iter_crear(iter->hash->arreglo[iter->pos_en_arreglo]);
}else{
campo_t* campi = lista_iter_ver_actual(iter->iterador_lista_actual);
//printf("373 Iter actual %s", campi->clave);
lista_iter_avanzar(iter->iterador_lista_actual);
if (lista_iter_al_final(iter->iterador_lista_actual)) return hash_iter_avanzar(iter);
}
printf("C383 iter->nroelemento ++\n");
iter->nro_elemento++;
return true;
}
// Devuelve clave actual, esa clave no se puede modificar ni liberar.
const char *hash_iter_ver_actual(const hash_iter_t *iter)
{
//printf("Ver actual -- Iter en lista: %u\n", iter->pos_en_arreglo);
if (hash_iter_al_final(iter)) return NULL;
campo_t *campo_actual = lista_iter_ver_actual(iter->iterador_lista_actual);
//printf("Ver actual %p\n", campo_actual);
return campo_actual->clave;
}
// Comprueba si terminó la iteración
bool hash_iter_al_final(const hash_iter_t *iter)
{
return iter->pos_en_arreglo == -1;
}
// Destruye iterador
void hash_iter_destruir(hash_iter_t *iter)
{
if(iter->iterador_lista_actual != NULL) lista_iter_destruir(iter->iterador_lista_actual);
//free(iter->iterador_lista_actual);
free(iter);
}
// 15/11