forked from gzc/CLRS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
HUFFMAN.cpp
167 lines (136 loc) · 4.67 KB
/
HUFFMAN.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
/*************************************************************************
> File Name: HUFFMAN.cpp
> Author:
> Mail:
> Created Time: Mon 12 Jan 2015 11:48:32 PM CST
************************************************************************/
#include "HUFFMAN.h"
#include<iostream>
using namespace std;
HUFFMAN::HUFFMAN() {
}
HUFFMAN::~HUFFMAN() {
if(!huffman_Tree) destroy(huffman_Tree);
}
void HUFFMAN::buildTree(string &data, string filename) {
map<char, int> frequency;
for(string::iterator it = data.begin(); it != data.end(); it++) {
frequency[*it]++;
}
#ifdef DEBUG
cout << "-------------------- Frequencies of data --------------------" << endl;
for(map<char, int>::iterator it = frequency.begin(); it != frequency.end(); it++) {
cout << it->first << " " << it->second << endl;
}
cout << "-------------------- End of frequencies --------------------" << endl;
#endif
priority_queue<Htree *, vector<Htree *>, myComparision> pq;
for(map<char, int>::iterator it = frequency.begin(); it != frequency.end(); it++) {
Htree *node = new Htree(NULL, NULL, it->second, it->first);
pq.push(node);
}
while(pq.size() > 1) {
Htree *node1 = pq.top();
pq.pop();
Htree *node2 = pq.top();
pq.pop();
Htree *node = new Htree(node1, node2, node1->weight+node2->weight, 0);
pq.push(node);
}
huffman_Tree = pq.top();
vector<bool> code;
buildDict(huffman_Tree, code);
#ifdef DEBUG
cout << "-------------------- Show Encoding Dict --------------------" << endl;
for(huffman_dict::iterator it = dict.begin(); it != dict.end(); it++) {
cout << it->first << " ";
vector<bool> code = it->second;
for(vector<bool>::iterator codeit = code.begin(); codeit != code.end(); codeit++) {
cout << *codeit;
}
cout << endl;
}
cout << "-------------------- End of Dict --------------------" << endl;
#endif
}
void HUFFMAN::buildDict(Htree *node, vector<bool> &code) {
if(isLeaf(node)) {
dict[node->ch] = code;
} else {
code.push_back(false);
buildDict(node->left, code);
code.pop_back();
code.push_back(true);
buildDict(node->right, code);
code.pop_back();
}
}
void HUFFMAN::writeTrie(Htree *node) {
if (isLeaf(node)) {
binaryStdOut->write(true);
binaryStdOut->write(node->ch);
return;
}
binaryStdOut->write(false);
writeTrie(node->left);
writeTrie(node->right);
}
void HUFFMAN::encode(string &data, string filename) {
cout << "-------------------- Begin Encoding Data : " << filename << " --------------------" << endl;
buildTree(data, filename);
binaryStdOut = new BinaryStdOut(filename);
//first of all, write our huffman tree
writeTrie(huffman_Tree);
//Then write the total length of our data
binaryStdOut->write((int)data.length());
//Finally, write our compressed data
for(string::iterator it = data.begin(); it != data.end(); it++) {
char ch = *it;
vector<bool> code = dict[ch];
for(vector<bool>::iterator codeit = code.begin(); codeit != code.end(); codeit++) {
bool v = *codeit;
binaryStdOut->write(v);
}
}
binaryStdOut->close();
delete binaryStdOut;
if(!huffman_Tree) destroy(huffman_Tree);
cout << endl << "-------------------- Finish Encoding Data --------------------" << endl;
}
Htree * HUFFMAN::readTrie() {
bool isLeaf = binaryStdIn->readBool();
if (isLeaf) {
return new Htree(NULL, NULL, -1, binaryStdIn->readChar());
} else {
return new Htree(readTrie(), readTrie(), -1, '\0');
}
}
string HUFFMAN::decode(string filename) {
cout << endl << "-------------------- Begin Decoding Data --------------------" << endl;
binaryStdIn = new BinaryStdIn(filename);
huffman_Tree = readTrie();
int length = binaryStdIn->readInt();
string data;
for (int i = 0; i < length; i++) {
Htree *x = huffman_Tree;
while (!isLeaf(x)) {
bool bit = binaryStdIn->readBool();
if (bit) x = x->right;
else x = x->left;
}
data += x->ch;
}
delete binaryStdIn;
if(!huffman_Tree) destroy(huffman_Tree);
cout << endl << "-------------------- Finish Decoding Data --------------------" << endl;
return data;
}
/*
* delete all the nodes
* prevent memory leak
*/
void HUFFMAN::destroy(Htree *node) {
if(node->left) destroy(node->left);
if(node->right) destroy(node->right);
delete node;
}