-
Notifications
You must be signed in to change notification settings - Fork 275
Expand file tree
/
Copy pathhuffman_algo.cpp
More file actions
84 lines (67 loc) · 1.5 KB
/
huffman_algo.cpp
File metadata and controls
84 lines (67 loc) · 1.5 KB
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
#include <iostream>
#include <string>
#include <queue>
#include <vector>
#include <map>
using namespace std;
struct MinHeapNode
{
char data;
unsigned freq;
MinHeapNode *left, *right;
MinHeapNode(char data, unsigned freq)
{
left = right = nullptr;
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 HuffmanCodes(string text)
{
map<char, unsigned> freq;
for (char c : text)
{
freq[c]++;
}
priority_queue<MinHeapNode *, vector<MinHeapNode *>, compare> minHeap;
for (auto pair : freq)
{
minHeap.push(new MinHeapNode(pair.first, pair.second));
}
MinHeapNode *left, *right, *top;
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);
}
cout << "Huffman Codes for the text:\n";
printCodes(minHeap.top(), "");
}
int main()
{
string str = "huffman coding is a greedy algorithm";
HuffmanCodes(str);
return 0;
}