-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHuffmanCode.cpp
267 lines (228 loc) · 7.34 KB
/
HuffmanCode.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
#include "HuffmanCode.h"
#include <iostream>
#include <string>
#include <sstream>
#include <bitset>
using namespace std;
HuffmanCode::HuffmanCode(){
zerosAndOnes = "";
poem = "";
}
void HuffmanCode::readData() {
//Map of character frequency
string line = "";
ifstream myPoem;
myPoem.open("poem.txt");
//Looping lines of poem
while(getline(myPoem,line)) {
//Looping trough the line, adding each character
for (int i = 0; i < line.length(); i++) {
charFrequency[line[i]]++; //add one
poem += line[i];
}
}
myPoem.close();
}
void HuffmanCode::displayData(){
cout << "Frequency Map:" << endl;
cout << "Character \t Frequency" << endl;
for(auto it = charFrequency.cbegin(); it != charFrequency.cend(); ++it) {
std::cout << it->first << "\t" << it->second << endl;
}
}
void HuffmanCode::createQueue(){
//Creating tree
for(auto it = charFrequency.cbegin(); it != charFrequency.cend(); ++it) {
//Creating new node
HuffmanNode* node = new HuffmanNode;
node->setChar(it->first);
node->setCount(it->second);
//Initialising to null
node->setRight(NULL);
node->setLeft(NULL);
huffmanQueue.push(node);
}
}
/*****************************************************************************************
*
* Title: An In-Depth Look At Huffman Encoding
* Author: Knowles Atchison Jr
* Date: 2011
* Code version: 1.0
* Availability: www.dreamincode.net/forums/blog/324/entry-3150-an-in-depth-look-at-huffman-encoding/
*
***************************************************************************************/
void HuffmanCode::createTable() {
//While priority queue is greater or equal to 2
HuffmanNode* combined = NULL;
while(huffmanQueue.size() >= 2) {
//Remove the lowest
HuffmanNode* lowest1 = huffmanQueue.top();
huffmanQueue.pop();
HuffmanNode* lowest2 = huffmanQueue.top();
huffmanQueue.pop();
//The new combine node
combined = new HuffmanNode;
combined->setChar(NULL);
combined->setCount(lowest1->getCount()+lowest2->getCount());
huffmanQueue.push(combined);
combined->setLeft(lowest1);
combined->setRight(lowest2);
//Combined node points to 2 child nodes
}
HuffmanNode* last = huffmanQueue.top();
HuffmanNode* root = new HuffmanNode;
//Last one is the root of your encoding tree
root->setChar(NULL);
root->setCount(combined->getCount()+last->getCount());
root->setLeft(combined);
root->setRight(last);
setRoot(root);
encodeHuffmanTable(root, "");
}
void HuffmanCode::encodeHuffmanTable(HuffmanNode *root, string code){
if(root->getLeft() == NULL){
root->setCode(code);
huffmanMap.insert(pair<char, string>(root->getCharacter(), code));
return;
}
else{
encodeHuffmanTable(root->getLeft(), code + "0");
encodeHuffmanTable(root->getRight(), code + "1");
}
}
void HuffmanCode::display(){
cout << "Frequency Map:" << endl;
for(auto it = huffmanMap.cbegin(); it != huffmanMap.cend(); ++it) {
std::cout << it->first << "\t" << it->second << endl;
}
}
void HuffmanCode::encodeString(){
for(size_t i = 0; i < poem.length(); i++){
zerosAndOnes.append(huffmanMap[poem.at(i)]);
}
ofstream outputFile("EncodedFile.txt");
outputFile << zerosAndOnes;
}
void HuffmanCode::decodeFile() {
string decodedPoem = "";
string myText = "";
string line = "";
HuffmanNode*node = getRoot();
ifstream file;
file.open("EncodedFile.txt");
//Looping lines of encoded text
while(getline(file,line)) {
myText +=line;
}
file.close();
//Checking map against binary
for (int i = 0; i != myText.size(); i++) {
//If it is 0, go left, else if it is 1, go right
if (myText[i] == '0') {
node = node -> getLeft();
} else if (myText[i] == '1'){
node = node -> getRight();
}
// If we have reached a node with a letter
// Adding decoded letter
// Node is reset to the root
if (node->getCharacter() != NULL) {
decodedPoem += node->getCharacter();
node = getRoot();
}
}
//Outputting decoded poem to a file
ofstream outputFile("DecodedFile.txt");
outputFile << decodedPoem;
}
/*****************************************************************************************
*
* Title: An In-Depth Look At Huffman Encoding
* Author: Knowles Atchison Jr
* Date: 2011
* Code version: 1.0
* Availability: http://stackoverflow.com/questions/23344257/convert-a-string-of-binary-into-an-ascii-string-c
*
***************************************************************************************/
void HuffmanCode::compressFile() {
string myText = "";
string line = "";
string myChar = "";
string compressedText = "";
ifstream file;
file.open("EncodedFile.txt");
//Looping lines of encoded text
while (getline(file, line)) {
myText += line;
}
file.close();
//Turning into 8 bit pieces
while (myText.length()%8!=0){
extraZeros++;
myText += "0";
}
for (int i = 0; i < myText.length(); i++) {
myChar += myText.at(i);
if ((i + 1) % 8 == 0) {
std::stringstream mystream(myChar);
std::string myOutput;
while (mystream.good()) {
std::bitset<8> bits;
mystream >> bits;
char a = char(bits.to_ulong());
myOutput += a;
}
compressedText += myOutput;
myChar = "";
}
}
//Outputting compressed poem to a file
ofstream outputFile("CompressedFile.txt");
outputFile << compressedText;
}
void HuffmanCode::decompressFile() {
string myText, line, decompressedText = "";
ifstream file;
file.open("CompressedFile.txt");
//Looping lines of encoded text
while (getline(file, line)) {
myText += line;
}
file.close();
//cout << myText;
//Decompressing Converting ascii to binary,
for (int i = 0; i < myText.size(); i += 2) {
decompressedText += (std::bitset<8>(myText[i]).to_string());
}
//Removing extra zeros
for(int i=0;i<extraZeros;i++){
decompressedText.erase(decompressedText.length()-1);
}
//Outputting decompressed poem in binary to a file
ofstream outputFile("DecompressedFile.txt");
outputFile << decompressedText;
//Extra test
cout << "\nConverting decompressedFile.txt from binary" << endl;
string aaa;
HuffmanNode* node = getRoot();
//Checking map against binary
for (int i = 0; i != decompressedText.size(); i++) {
//If it is 0, go left, else if it is 1, go right
if (decompressedText[i] == '0') {
node = node -> getLeft();
} else if (decompressedText[i] == '1'){
node = node -> getRight();
}
// If we have reached a node with a letter
// Adding decoded letter
// Node is reset to the root
if (node->getCharacter() != NULL) {
aaa += node->getCharacter();
node = getRoot();
}
}
//Outputting decoded poem to a file
ofstream outputFilea("DecompressedFile_UNENCODED.txt");
outputFilea << aaa;
}