4 int no_pertenece(char *z, char c, int len);
6 void pop_front(char *z, int pos);
8 int get_pos(char *z, int len, char c);
9 /****fin privadas******/
11 void print_z(char *z, int len)
15 fprintf(stderr, "%c", z[i]);
16 fprintf(stderr, "\n");
19 char *jacu_mtf(char *datos, int len)
25 pos = (char *)malloc(len*sizeof(char));
26 z = jacu_buscar_z(datos, len, &size);
28 pos[i] = get_pos(z, size, datos[i]);
35 char *jacu_mtf_inv(char *z, int *pos, int len)
40 datos = (char*)malloc(sizeof(char)*len);
48 char *jacu_buscar_z(char* datos, int len, int *size)
55 if( no_pertenece(z, datos[i], j) == -1 ){
57 z = realloc(z, j*sizeof(char));
66 int no_pertenece(char *z, char c, int len)
70 /* XXX Z NO TIENE 255 POSICIONES XXX */
77 void pop_front(char *z, int pos)
88 int get_pos(char *z, int len, char c)
91 if (z==NULL) return -1;
93 for(pos=0; pos<len; pos++)