]> git.llucax.com Git - z.facultad/75.06/jacu.git/blob - src/mtf/mtf.c
Bugfixes y mas cosas a la pantalla
[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, 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 char *jacu_mtf(char *datos, int len, char **_z, int *z_len)
20 {
21         char *z;
22         char *pos;
23         int i, size;
24         
25         pos = (char *)malloc(len*sizeof(char));
26         z = jacu_buscar_z(datos, len, &size);
27         for(i=0; i<len; i++){
28                 pos[i] = get_pos(z, size, datos[i]);
29                 printf("pos de %c = %d\n", datos[i], pos[i]);
30                 if (pos[i] != 0) 
31                         pop_front(z, pos[i]);
32         }
33
34         (*_z) = z;
35         (*z_len) = size;
36         return pos;
37 }
38
39 char *jacu_mtf_inv(char *z, char *pos, int len)
40 {
41         char *datos;
42         int i;
43         
44         datos = (char*)malloc(sizeof(char)*len);
45         for(i=0; i<len; i++){
46                 datos[i] = z[(size_t)pos[i]];
47                 pop_front(z, pos[i]);
48         }
49         return datos;
50 }
51
52 char *jacu_buscar_z(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, int pos)
82 {
83         char aux;
84         int i=0;
85         
86         aux = z[pos];
87         for(i=pos; i>0; i--)
88                 z[i]=z[i-1];
89         z[0]=aux;
90 }       
91         
92 int get_pos(char *z, int len, char c)
93 {
94         int pos;
95         if (z==NULL) return -1;
96
97         for(pos=0; pos<len; pos++)
98                 if ( z[pos] == c )
99                         return pos;
100         return -1;
101 }