forked from andrewawni/Qompressor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDecoding_Huffman_Text.cpp
145 lines (127 loc) · 4.1 KB
/
Decoding_Huffman_Text.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
#include "Decoding_Huffman_Text.h"
/*
* class usage example
*
* #include "Decoding_Huffman_Text.h"
int main() {
Decoding_Huffman_Text decoder;
string fileLocation = "/home/ahmed/Desktop/huffmanTest.txt";
browse for the encoded file then the function will return a string of the decoded string
cout<<decoder.decodeTextInFile(fileLocation)<<endl;
return 0;
}
*/
//Huffman Tree
HuffmanTree::HuffmanTree(char character) {
this->character = character;
leftNode = NULL;
rightNode = NULL;
}
HuffmanTree::HuffmanTree() {
root = NULL;
leftNode = NULL;
rightNode = NULL;
}
//insert nodes in a tree by creating new ones or by passing by them
void HuffmanTree::insertNode(char character, string code) {
HuffmanTree *ptr;
if (root == NULL) {
HuffmanTree *node = new HuffmanTree('#');
root = node;
ptr = root;
} else {
ptr = root;
}
for (int i = 0; i < code.size(); i++) {
char nodeChar = ' ';
//checking if we reached the end of the tree
if (i == code.size() - 1)
nodeChar = character;
else
nodeChar = '#';
//go left or right depending on the code char
if (code[i] == '0') {
if (ptr->leftNode == nullptr) {
HuffmanTree *node = new HuffmanTree(nodeChar);
ptr->leftNode = node;
ptr = ptr->leftNode;
} else
ptr = ptr->leftNode;
} else {
if (ptr->rightNode == nullptr) {
HuffmanTree *node = new HuffmanTree(nodeChar);
ptr->rightNode = node;
ptr = ptr->rightNode;
} else
ptr = ptr->rightNode;
}
}
}
//traverse the tree decoding the message to it's origin
string HuffmanTree::decodeString(string code) {
HuffmanTree *ptr = root;
string result = "";
ptr = root;
for (int i = 0; i < code.size(); i++) {
if (code[i] == '0')
ptr = ptr->leftNode;
else
ptr = ptr->rightNode;
if (ptr->rightNode == nullptr && ptr->leftNode == nullptr) {
result += ptr->character;
ptr = root;
}
}
return result;
}
//Decoding the huffman Tree
Decoding_Huffman_Text::Decoding_Huffman_Text() {
}
Decoding_Huffman_Text::~Decoding_Huffman_Text() {
}
//return a decoded string using huffmanCodes and the encodedString
string Decoding_Huffman_Text::decodeText(map<char, string> huffmanCodesTable, string encodedString) {
HuffmanTree Tree;
map<char, string>::iterator it;
for (it = huffmanCodesTable.begin(); it != huffmanCodesTable.end(); it++) {
Tree.insertNode(it->first, it->second);
}
return Tree.decodeString(encodedString);
}
//return a decoded string of the encoded text file location
string Decoding_Huffman_Text::decodeTextInFile(string fileLocation) {
map<char, string> huffmanMapCodes;
pair<char, string> huffmanMapPair;
int counter = 0;
bool firstLine = true;
string encodedText, readLine, charCode;
ifstream readHuffmanFile;
readHuffmanFile.open(fileLocation);
if (readHuffmanFile.is_open()) {
while (getline(readHuffmanFile, readLine)) {
if (firstLine) {
encodedText = readLine;
firstLine = false;
} else {
counter++;
if (counter == 1)
huffmanMapPair.first = readLine[0];
else if (counter == 2) {
huffmanMapPair.second = readLine;
huffmanMapCodes.insert(huffmanMapPair);
counter = 0;
}
}
}
} else {
cout << "we couldn't open the file" << endl;
}
readHuffmanFile.close();
// if you want to see the map and encoded string to check uncomment the next commented lines
cout << encodedText << endl;
map<char, string>::iterator it;
for (it = huffmanMapCodes.begin(); it != huffmanMapCodes.end(); it++) {
cout << it->first << " => " << it->second << endl;
}
return decodeText(huffmanMapCodes, encodedText);
}