-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHuffmanEncoding.cpp
104 lines (88 loc) · 2.59 KB
/
HuffmanEncoding.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
#include <bits/stdc++.h>
#define MAX_TREE_HT 256
using namespace std;
map<char, string> codes;
map<char, int> freq;
struct MinHeapNode {
char data;
int freq;
MinHeapNode *left, *right;
MinHeapNode(char data, int freq) {
left = right = NULL;
this->data = data;
this->freq = freq;
}
};
struct compare {
bool operator()(MinHeapNode *l, MinHeapNode *r) {
return (l->freq > r->freq);
}
};
void printCodes(struct MinHeapNode *root, string str) {
if (!root)
return;
if (root->data != '$')
cout << root->data << ": " << str << "\n";
printCodes(root->left, str + "0");
printCodes(root->right, str + "1");
}
void storeCodes(struct MinHeapNode *root, string str) {
if (root == NULL)
return;
if (root->data != '$')
codes[root->data] = str;
storeCodes(root->left, str + "0");
storeCodes(root->right, str + "1");
}
priority_queue<MinHeapNode *, vector<MinHeapNode *>, compare>
minHeap;
void HuffmanCodes(int size) {
struct MinHeapNode *left, *right, *top;
for (map<char, int>::iterator v = freq.begin(); v != freq.end(); v++)
minHeap.push(new MinHeapNode(v->first, v->second));
while (minHeap.size() != 1) {
left = minHeap.top();
minHeap.pop();
right = minHeap.top();
minHeap.pop();
top = new MinHeapNode('$', left->freq + right->freq);
top->left = left;
top->right = right;
minHeap.push(top);
}
storeCodes(minHeap.top(), "");
}
void calcFreq(string str, int n) {
for (int i = 0; i < str.size(); i++)
freq[str[i]]++;
}
string decode_file(struct MinHeapNode *root, string s) {
string ans = "";
struct MinHeapNode *curr = root;
for (int i = 0; i < s.size(); i++) {
if (s[i] == '0')
curr = curr->left;
else
curr = curr->right;
if (curr->left == NULL and curr->right == NULL) {
ans += curr->data;
curr = root;
}
}
return ans + '\0';
}
int main() {
string str = "thequickbrownfox";
string encodedString, decodedString;
calcFreq(str, str.length());
HuffmanCodes(str.length());
cout << "\nCharacter With there Frequencies:\n";
for (auto v = codes.begin(); v != codes.end(); v++)
cout << v->first << ' ' << v->second << endl;
for (auto i: str)
encodedString += codes[i];
cout << "\nEncoded Huffman data:\n" << encodedString << endl;
decodedString = decode_file(minHeap.top(), encodedString);
cout << "\nDecoded Huffman Data:\n" << decodedString << endl;
return 0;
}