]> git.llucax.com Git - z.facultad/75.06/jacu.git/blob - src/mtf/mtf.c
el _z estaba alocando mas memoria de la que necesitaba, pero creo que eso no producia...
[z.facultad/75.06/jacu.git] / src / mtf / mtf.c
1 #include "mtf.h"
2
3 /****privadas*****/
4 int no_pertenece(char *z, char c, int len);
5
6 void pop_front(char *z, unsigned int pos);
7
8 int get_pos(char *z, int len, char c);
9 /****fin privadas******/
10
11 void print_z(char *z, int len)
12 {
13         int i;
14         for(i=0; i<len; i++)
15                 fprintf(stderr, "%c", z[i]);
16         fprintf(stderr, "\n");
17 }
18
19 unsigned char *jacu_mtf(unsigned char *datos, int len, unsigned char **_z, int *z_len)
20 {
21         unsigned char *z;
22         unsigned char *pos;
23         int i, size;
24         
25         pos = (unsigned char *)malloc(len*sizeof(unsigned char));
26         z = jacu_buscar_z(datos, len, &size);
27         *_z = (unsigned char*)malloc(size*sizeof(unsigned char));
28         memcpy(*_z, z, size*sizeof(unsigned char));
29         for(i=0; i<len; i++){
30                 pos[i] = get_pos(z, size, datos[i]);
31                 if (pos[i] != 0) 
32                         pop_front(z, pos[i]);
33         }
34         (*z_len) = size;
35         return pos;
36 }
37
38 unsigned char *jacu_mtf_inv(unsigned char *z, unsigned char *pos, int len)
39 {
40         char *datos;
41         int i;
42         
43         datos = (char*)malloc(sizeof(char)*len);
44         for(i=0; i<len; i++){
45                 datos[i] = z[(unsigned int)pos[i]];
46                 if (pos[i] != 0)
47                         pop_front(z, (unsigned int)pos[i]);
48         }
49         return datos;
50 }
51
52 unsigned char *jacu_buscar_z(unsigned char* datos, int len, int *size)
53 {
54         char *z;
55         int i, j=0;
56         
57         z = NULL; 
58         for(i=0; i<len; i++){
59                 if( no_pertenece(z, datos[i], j) == -1 ){
60                         j++;
61                         z = realloc(z, j*sizeof(char));
62                         z[j-1]=datos[i];
63                         *size = j;
64                 }
65         }
66         return z;
67 }
68         
69
70 int no_pertenece(char *z, char c, int len)
71 {
72         int i;
73         
74         for(i=0; i<len; i++)
75                 if (z[i] == c)
76                         return 0;
77         return -1;
78 }
79                         
80 void pop_front(char *z, unsigned int pos)
81 {
82         char aux;
83         int i=0;
84
85         if (pos > 255) printf("pos > = %u\n", pos);
86         if (pos < 0u) printf("pos < = %d\n", pos);
87         aux = z[pos];
88         for(i=pos; i>0; i--)
89                 z[i]=z[i-1];
90         z[0]=aux;
91 }       
92         
93 int get_pos(char *z, int len, char c)
94 {
95         int pos;
96         if (z==NULL) return -1;
97
98         for(pos=0; pos<len; pos++)
99                 if ( z[pos] == c )
100                         return pos;
101         return -1;
102 }