-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompressor.h
64 lines (59 loc) · 2.18 KB
/
compressor.h
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
#ifndef COMPRESSOR_H
#define COMPRESSOR_H
#include <string>
#include <queue>
#include <unordered_map>
#include <bits/stdc++.h>
#include <QTextStream>
#include <QFile>
#include <QBitArray>
#include <QDataStream>
#include <QString>
using namespace std;
#define EMPTY_STRING ""
// A Tree node
class HuffmanNode
{
public:
char value;
int frequency;
int nNodes;
HuffmanNode* left;
HuffmanNode* right;
};
int countSubNodes(HuffmanNode* n);
HuffmanNode* addHuffmanNode(char ch, int freq,int pri, HuffmanNode* left, HuffmanNode* right);
// Comparison object to be used to order the heap
class compare
{
public:
bool operator()(const HuffmanNode* leftChild, const HuffmanNode* rightChild) const
{
// the highest priority item has the lowest frequency
if(leftChild->frequency!=rightChild->frequency){
if (leftChild->frequency > rightChild->frequency)
return true;
else
return false;}
else{
if(leftChild->nNodes > rightChild->nNodes){
return true;
}
else{return false;}
}
}
};
bool isLeaf(HuffmanNode* root);
void encode(HuffmanNode* root, string encodeString, unordered_map<char, string>& huffmanCode);
void decode(HuffmanNode* root, int& index, string str, string& decodedString);
priority_queue<HuffmanNode*, vector<HuffmanNode*>, compare> createHuffmanTree(string text ,unordered_map<char,pair<int, int>> &freqtable);
priority_queue<HuffmanNode*, vector<HuffmanNode*>, compare> createHuffmanTreeForDecoding(unordered_map<char,pair<int, int>> &freqtable);
void write_string(string path, const string &content);
string getEncodedString(HuffmanNode* root, string text, string saveToPath ,unordered_map<char, string>& huffmanCode);
string getDecodedString(HuffmanNode* root, string encodedString);
void storeHuffmanFreqTable(unordered_map<char,pair<int, int>> &freqtable, QFile &huffmanCodeFile);
void readHuffmanFreqTable(unordered_map<char,pair<int, int>> &freqtable, QFile &huffmanCodeFile);
string compress(string text, string filePath,QFile &huffmanCodeFile);
string read_string(string path);
string decompress(string strFilePath, QFile &huffmanCodeFile);
#endif // COMPRESSOR_H