]> git.llucax.com Git - z.facultad/75.06/jacu.git/blob - src/mtf/mtf.c
9f394e31ae0d6749c7f4b2147a9713729f72c223
[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(len*sizeof(unsigned char));
28         memcpy(*_z, z, len*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         /* XXX Z NO TIENE 255 POSICIONES XXX */
75         for(i=0; i<len; i++)
76                 if (z[i] == c)
77                         return 0;
78         return -1;
79 }
80                         
81 void pop_front(char *z, unsigned int pos)
82 {
83         char aux;
84         int i=0;
85
86         if (pos > 255) printf("pos > = %u\n", pos);
87         if (pos < 0u) printf("pos < = %d\n", pos);
88         aux = z[pos];
89         for(i=pos; i>0; i--)
90                 z[i]=z[i-1];
91         z[0]=aux;
92 }       
93         
94 int get_pos(char *z, int len, char c)
95 {
96         int pos;
97         if (z==NULL) return -1;
98
99         for(pos=0; pos<len; pos++)
100                 if ( z[pos] == c )
101                         return pos;
102         return -1;
103 }