-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprueba.cpp
342 lines (309 loc) · 10.5 KB
/
prueba.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
#include <iostream>
#include <fstream>
#include <map>
#include <string.h>
#include <bitset>
#include <utility>
#include <vector>
#include <time.h>
#include "tree.cpp"
#include "heap.cpp"
using namespace std;
/* Pre: true
* Post: dado un conjunto de pares clave-valor, devuelve el árbol de Huffman
* resultante de insertar dichos pares
*/
Tree Huffman(map<string,int> conjunto){
Heap Q;
for(std::map<string,int>::iterator it=conjunto.begin(); it!=conjunto.end(); ++it){
Tree aux(it->first,it->second);
Q.push(aux);
}
int n = conjunto.size(), i = 0;
for(i = 0; i < n-1; i++){
Tree * x = new Tree(Q.cima()); Q.pop();
Tree * y = new Tree(Q.cima()); Q.pop();
Tree z(*x,*y);
Q.push(z);
}
return Q.cima();
}
/* Pre: o.isOpen() AND name es el nombre de un fichero existente (de texto o binario)
* Post: codifica el fichero de nombre 'name' mediante una tabla de datos por
* codificar y un vector de pares que representa el árbol de Huffman
*/
void codificar(ofstream& o, map<string,string> tablaCod, char * name, pair<char,bool> preorderTree[], int tam, int caracteres){
/* Declaración de variables */
string aux;
char a;
ifstream g(name);
if(!g.is_open()){
cout << "No existe el fichero " << name << endl;
} else{
cout << "Se ha abierto el fichero " << name << endl;
/* Escritura de los datos de guía: número de caracteres distintos,
* tamaño del fichero (en caracteres) y estructura del árbol */
o << caracteres << ' ';
o << tam;
for(int i = 0; i < tam; i++){
/*if(preorderTree[i].second){
a = 't';
}else{
a = 'f';
}*/
o << preorderTree[i].first /*<< a*/;
}
/* Declaración de variables */
string buffer;
bitset<8> bset;
int j;
string bufferaux;
bool ultima = true;
caracteres = 0;
/* Codificación del fichero en binario según la estructura del
* árbol de Huffman. Los bits se escriben de 8 en 8 dado el tamaño
* del bitset. */
while(!g.eof()){
ultima = false;
g.get(a);
aux = a;
buffer += tablaCod[aux];
if(buffer.length()>=8){
bset.reset();
for(j=0; j<8; j++){
if(buffer[j]=='1'){
bset.set(j);
}
}
bufferaux = "";
for(j=8; j<buffer.length(); j++){
bufferaux += buffer[j];
}
buffer = bufferaux;
//if(o.is_open()){
a = char(bset.to_ulong());
caracteres++;
o << a;
//}
ultima = true;
}
}
/* Módulo que escribe los bits sobrantes (cuando quedan menos
* de 8) para no perder información */
if (!ultima || buffer.length() > 0)
{
if (buffer.length() <= 8)
{
bset.reset();
for(j=0; j<buffer.length(); j++){
if(buffer[j]=='1'){
bset.set(j);
}
}
a = char(bset.to_ulong());
//if(o.is_open()){
o << a;
caracteres++;
//}
}else{
while (buffer.length() >= 8)
{
bset.reset();
for (j = 0; j < 8; j++)
{
if (buffer[j] == '1')
{
bset.set(j);
}
}
bufferaux = "";
for (j = 8; j < buffer.length(); j++)
{
bufferaux += buffer[j];
}
buffer = bufferaux;
//if(o.is_open()){
a = char(bset.to_ulong());
caracteres++;
o << a;
//}
ultima = true;
}
if (!ultima || buffer.length() > 0)
{
bset.reset();
for (j = 0; j < buffer.length(); j++)
{
if (buffer[j] == '1')
{
bset.set(j);
}
}
a = char(bset.to_ulong());
//if(o.is_open()){
o << a;
caracteres++;
}
}
}
cout << "Se han escrito en " << name << ".huf " << caracteres << " caracteres." << endl;
}
g.close();
}
/* Pre: file!=null AND o!=null AND file está asociado a un fichero previamente
* codificado por este mismo programa.
* Post: Decodifica el fichero asociado a file según la estructura del árbol
* 'cod'
*/
void decodificar(Tree cod, ifstream& file, ofstream& o, int caracteres){
/* Declaración de variables */
bitset<8> lectura;
int i, veces = 0, leidos = 0;
char decod;
Tree *busqueda = &cod;
file.get(decod);
lectura = bitset<8>(decod);
/* Lectura de los carácteres binarios codificados en el fichero 'file' para
* su posterior conversión a carácteres */
while (!file.eof() && veces < caracteres)
{
for (i = 0; i < 8; i++)
{
if (lectura[i] == 0)
{
busqueda = busqueda->getIzq();
}
else
{
busqueda = busqueda->getDer();
}
/* Caracter encontrado */
if (busqueda->getIzq() == nullptr)
{
veces++;
decod = busqueda->getId()[0];
o << decod;
busqueda = &cod;
if (veces == caracteres)
{
break;
}
}
}
/*Actualización de carácter buscado*/
file.get(decod);
leidos++;
lectura = bitset<8>(decod);
if(file.eof()){
cout << "Se ha terminado el fichero" << endl;
cout << "Se han leido de huf: " << leidos << endl;
}
}
}
int main(int _argc, char ** _argv){
/**
* CODIFICACION DEL FICHERO .HUF
*/
clock_t t;
if(strcmp(_argv[1],"-c")==0){
t = clock();
cout << "Comenzando la codificacion..." << endl;
/* Declaración de variables */
ifstream f(_argv[2]);
string name = _argv[2];
name += ".huf";
string aux;
int caracteres = -1, i = 0;
char a;
ofstream o;
o.open(name);
if(f.is_open()){
cout << "Se ha abierto el fichero " << _argv[2] << endl;
} else{
cout << "El nombre del archivo no era correcto." << endl;
return -1;
}
/*if (o.is_open())
{
cout << "Se ha abierto el fichero " << name << endl;
}
else
{
cout << "No se ha podido abrir/crear el fichero a .huf ." << endl;
return -1;
}*/
/* Poblado de la tabla de frecuencias */
map<string,int> frecuencias;
while(!f.eof()){
f.get(a);
caracteres++;
aux = a;
frecuencias[aux]++;
}
f.close();
/* Creación de la tabla Huffman */
int tam = frecuencias.size();
tam = tam + tam - 1;
Tree arbolHuffman = Huffman(frecuencias);
/* Construcción de un vector con el árbol recorrido en pre-orden */
pair<char,bool> preorderTree[tam];
arbolHuffman.preorderArray(preorderTree,tam);
/* Construcción de la tabla de codificación */
map<string,string> tablaCod = arbolHuffman.tablaHuffman();
/* Codificación del fichero */
codificar(o,tablaCod,_argv[2],preorderTree, tam, caracteres);
t = clock() - t;
printf("It took me %d clicks (%f seconds).\n", t, ((float)t) / CLOCKS_PER_SEC);
o.close();
}
/**
* DECODIFICACION DEL FICHERO .HUF
*/
else if(strcmp(_argv[1],"-d")==0){
t = clock();
/* Declaración de variables */
int tam, caracteres, a;
char aux; char aux2;
ifstream file(_argv[2]);
cout << "Comenzando la decodificacion..." << endl;
if(!file.is_open()){
cout << "El nombre del archivo no era correcto." << endl;
return -1;
}
/* Recuperación del número de nodos del arbol, lectura e inserción en
* un árbol en pre-orden de los nodos */
char lastChar = 'a';
file >> caracteres;
file >> tam;
pair<char, bool> preorderTree[tam];
file.get(aux);
preorderTree[0] = make_pair(aux, false);
for (int i = 1; i < tam; i++)
{
file.get(aux);
//file.get(aux2);
preorderTree[i] = make_pair(aux, false);
if(preorderTree[i].first != preorderTree[i-1].first){
preorderTree[i-1].second = true;
}
}
preorderTree[tam-1].second = true;
/* Creación de la raíz del árbol (primer elemenro leido) y construcción
* del árbol que reconoce el código Huffman*/
a = 1;
Tree cod(string(1, preorderTree[0].first), 0);
cod.treeFromArray(preorderTree, tam, a);
map<string, string> tablaCod = cod.tablaHuffman();
/* Recuperación del nombre original del fichero y creación del mismo*/
string auxName = _argv[2];
string name = auxName.substr(0, auxName.length() - 4);
ofstream o;
o.open(name);
/* Decodificación del fichero */
decodificar(cod,file,o,caracteres);
t = clock() - t;
printf("It took me %d clicks (%f seconds).\n", t, ((float)t) / CLOCKS_PER_SEC);
file.close();
o.close();
}
}