-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHuffMan_Coding.cpp
193 lines (168 loc) · 4.47 KB
/
HuffMan_Coding.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
#include <iostream>
#include <bits/stdc++.h>
#include <algorithm>
#include <string>
#include <queue>
#include <vector>
#include <map>
#include <unordered_map>
typedef long long int li;
typedef long double ld;
using namespace std;
class Node
{
public:
char c;
int freq;
Node *left, *right;
Node(char c, int freq, Node *left, Node *right)
{
this->c = c;
this->freq = freq;
this->left = left;
this->right = right;
}
};
struct comparatorFunc
{
bool operator()(Node *a, Node *b)
{
return a->freq > b->freq;
}
};
void encodeHuffMann(Node *root, string str, map<char, string> &HuffMannCodes)
{
if (root == NULL)
{
return;
}
if (root->left == NULL && root->right == NULL)
{
HuffMannCodes[root->c] = str;
}
encodeHuffMann(root->left, str + '0', HuffMannCodes);
encodeHuffMann(root->right, str + '1', HuffMannCodes);
}
string decodeString(Node *root, string encodedString)
{
string ans = "";
Node *curr = root;
for (int i = 0; i < encodedString.size(); i++)
{
if (encodedString[i] == '0')
{
curr = curr->left;
}
else
{
curr = curr->right;
}
if (curr->left == NULL && curr->right == NULL)
{
ans += curr->c;
curr = root;
}
}
return ans;
}
void makingHuffMannCode(string input)
{
map<char, int> frequencies;
for (auto i : input)
{
frequencies[i]++;
}
priority_queue<Node *, vector<Node *>, comparatorFunc> HuffmannTree;
for (auto x : frequencies)
{
Node *newNode = new Node(x.first, x.second, NULL, NULL);
HuffmannTree.push(newNode);
}
while (HuffmannTree.size() != 1)
{
Node *left = HuffmannTree.top();
HuffmannTree.pop();
Node *right = HuffmannTree.top();
HuffmannTree.pop();
Node *newNode = new Node('$', left->freq + right->freq, left, right);
HuffmannTree.push(newNode);
}
Node *root = HuffmannTree.top();
map<char, string> HuffMannCodes;
encodeHuffMann(root, "", HuffMannCodes);
// printing huffmann codes of each character
for (auto i : HuffMannCodes)
{
cout << i.first << " ->";
for (auto j : i.second)
{
cout << j;
}
cout << endl;
}
// to get our encoded string
string encodedString = "";
for (auto c : input)
{
encodedString += HuffMannCodes[c];
}
// we have obtained our encoded string, no to decode this string back to the original string, we will make a decode function
string decodedString = decodeString(root, encodedString);
cout << endl;
cout << "The Original String -->> :" << endl;
cout << input << endl;
cout << endl;
cout << "The Encoded String -->> :" << endl;
cout << encodedString << endl;
cout << endl;
cout << "The Decoded Strring -->> : " << endl;
cout << decodedString << endl;
// to find compression rate
int lengthOfOriginalString = 8 * (input.length()); // chars take 8 bytes
int lengthOfReducedString = ceil(encodedString.length() / 8);
double compression = (double)lengthOfReducedString / lengthOfOriginalString;
cout << endl;
cout << "The String has been compressed upto " << compression * 100 << "% of the original string" << endl;
}
signed main()
{
string s;
cout << endl;
cout << "Enter The Input String -->> " << endl;
getline(cin, s);
makingHuffMannCode(s);
}
/* output -
Enter The Input String -->>
File Compression System Using Huffman Coding in C++
->101
+ ->11110
C ->0111
F ->110110
H ->100101
S ->110111
U ->111010
a ->111110
d ->111111
e ->0110
f ->11010
g ->11100
i ->010
l ->111011
m ->0011
n ->000
o ->1000
p ->00101
r ->00100
s ->1100
t ->100110
u ->100111
y ->100100
The Original String -->> :
File Compression System Using Huffman Coding in C++
The Encoded String -->> :
11011001011101101101010111100000110010100100011011001100010100000010111011110010011001001100110001110111101011000100001110010110010110011111010110100011111110000101011110001111110100001110010101000010101111111011110
The Decoded Strring -->> :
File Compression System Using Huffman Coding in C++
The String has been compressed upto 6.37255% of the original string
*/