X-Git-Url: https://git.llucax.com/z.facultad/75.06/jacu.git/blobdiff_plain/fef03d51453b511c6355d53f1c4f5d06f1e8519e..581c6c4f1d70b1928ae2946aa0482a4d36ea56d9:/src/blocksorting/bs.c diff --git a/src/blocksorting/bs.c b/src/blocksorting/bs.c index a1e14a2..a71e261 100644 --- a/src/blocksorting/bs.c +++ b/src/blocksorting/bs.c @@ -5,6 +5,95 @@ /* Block Sorting Optimizado en memoria! */ +typedef struct _dict_ { + char *word; + int len; + int hits; +} t_Diccionario; + +#define PALABRA(a) {a, sizeof(a)-1, 0} + +#define DICT_SIZE sizeof(dic)/sizeof(t_Diccionario) + +/* ASCII Numero 3 como caracter de escape */ +#define ESCAPE_CHARACTER 0x3 + +/* Diccionario */ +t_Diccionario dic[] = { + /* Preposiciones (no todas) */ + PALABRA(" ante"), + PALABRA(" bajo"), + PALABRA(" cabe"), + PALABRA(" con"), + PALABRA(" contra"), + /* PALABRA(" de"), XXX No se si conviene, solo ahorra 1 byte y puede romper localidad */ + PALABRA(" desde"), + PALABRA(" hasta"), + PALABRA(" hacia"), + PALABRA(" para"), + PALABRA(" por"), + PALABRA(" según"), + PALABRA(" sin"), + PALABRA(" sobre"), + PALABRA(" tras"), + PALABRA(" mediante"), + PALABRA(" durante"), + + /* Articulos */ + PALABRA(" el "), + PALABRA(" la "), + PALABRA(" ella "), + PALABRA(" del "), + PALABRA(" los "), + PALABRA(" las "), + PALABRA(" lo "), + PALABRA(" que"), + PALABRA(" una "), + PALABRA(" también"), + PALABRA(" tambien"), + PALABRA(" cuando"), + PALABRA(" pero"), + PALABRA(" todo"), + /* Otras de test */ + PALABRA(" si "), + PALABRA(" mas "), + PALABRA(" más "), + PALABRA(" porque"), + PALABRA(" entonces"), + PALABRA(" siempre"), + PALABRA(" segundo"), + PALABRA(" programa"), + PALABRA(" existe"), + PALABRA(" recien"), + PALABRA(" máximo"), + PALABRA(" mínimo"), + PALABRA(" casi"), + PALABRA(" sección"), + PALABRA(" informe"), + PALABRA(" Informe"), + PALABRA(" acción"), + PALABRA(" perdedor"), + PALABRA(" existencia"), + PALABRA(" aire"), + PALABRA(" árbol"), + PALABRA(" prueba"), + PALABRA(" muestra"), + PALABRA(" animal"), + PALABRA(" suerte"), + PALABRA(" portador"), + PALABRA(" molesto"), + PALABRA(" cielo"), + PALABRA(" impulso"), + PALABRA(" alcohol"), + PALABRA(" seguido"), + PALABRA(" permiso"), + PALABRA(" cuarto"), + PALABRA(" brillante"), + PALABRA(" tener"), + PALABRA(" ningún"), + PALABRA(" fácil"), +}; + typedef struct _bs_decode_t_ { char c; Uint32 sig; @@ -163,31 +252,151 @@ void bs_EOL(char *data, Uint32 pagesize, Uint32 *j) (*j) += 9; } -int bs_readblock(FILE *fp, char *data, Uint32 pagesize) +char check_hint(char c) +{ + static int current_pos = 0; + char hits = 0; + int i; + char hit_pos = -1; + + for(i=0; i 1) return -2; /* Tengo mas de 1 hint! */ + + if (hit_pos == -1) return -2; /* Tengo 1 solo hit pero no es completo */ + + /* Tengo 1 solo hint !!!! */ + current_pos = 0; + return hit_pos; +} + +void bs_clean_dic() +{ + int i; + for(i=0; i