-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHuffmanCoding.cpp
323 lines (285 loc) · 6.09 KB
/
HuffmanCoding.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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
#include <iostream>
using namespace std;
class Node
{
public:
int Freq;
char data;
string code;
Node *begin;
Node *Next=nullptr;
Node *left=nullptr;
Node *right=nullptr;
Node* End(Node* begin)
{
head=begin;
while(head->Next!=nullptr)
{
head=head->Next;
}
return head;
}
Node* End()
{
head=Next;
while(head->Next!=nullptr)
{
head=head->Next;
}
return head;
}
private:
Node *head;
};
void printList(Node* node)
{
cout<<"Data of list:"<<endl;
Node* n;
n=node;
while (n != nullptr) {
cout << n->data << " ";
n = n->Next;
}
cout<<endl;
}
void printFreq(Node* node)
{
cout<<"Frequencies of list:"<<endl;
Node* n;
n=node;
while (n != nullptr) {
cout << n->Freq << " ";
n = n->Next;
}
cout<<endl;
}
void printTreeLeftAndRight(Node* node)
{
Node* n;
Node* n2;
n=node;
while (n != nullptr) {
if(n->right!=nullptr)
{
n2=n->right;
cout <<"right of "<<n->data<<": "<< n2->data << " "<<endl;;
}
if(n->left!=nullptr)
{
n2=n->left;
cout <<"left of "<<n->data<<": "<< n2->data << " "<<endl;
}
n = n->Next;
}
}
void printTreeCode(Node* node)
{
cout<<endl<<"Codes of Leaves:"<<endl<<"----------------";
Node* n;
n=node;
while (n != nullptr)
{
cout <<endl<<n->data<<": "<<n->code;
n = n->Next;
}
cout<<endl<<"---------"<<endl;
}
void push(Node** head_ref, char new_data)
{
Node* new_node = new Node();
new_node->data = new_data;
new_node->Freq = 1;
new_node->Next = (*head_ref);
(*head_ref) = new_node;
}
void sort(Node** Chars)
{
Node* temp=*Chars;
Node* temp2=temp;
Node* Sorted=temp;
while(Sorted!=nullptr)
{
temp=temp2;
while(temp->Next!=nullptr)
{
if(temp->Freq > temp->Next->Freq)
{
int tempFreq=temp->Freq;
temp->Freq=temp->Next->Freq;
temp->Next->Freq=tempFreq;
char tempChar=temp->data;
temp->data=temp->Next->data;
temp->Next->data=tempChar;
Node* tempNode=temp->left;
temp->left=temp->Next->left;
temp->Next->left=tempNode;
tempNode=temp->right;
temp->right=temp->Next->right;
temp->Next->right=tempNode;
}
temp=temp->Next;
}
Sorted=Sorted->Next;
}
*Chars=temp2;
}
Node* insert(string message)
{
Node *Chars=nullptr;
Node *tempChars=nullptr;
bool inserted=true;
for (int i=0; i<message.length();i++)
{
if(Chars==nullptr)//only for first time
{
push(&Chars,message[i]);
}
else
{
tempChars=Chars;
while(tempChars!=nullptr )
{
if(message[i]==tempChars->data)
{
tempChars->Freq=tempChars->Freq+1;
inserted=true;
break;
}
inserted=false;
tempChars=tempChars->Next;
}
if(!inserted)
{
push(&Chars,message[i]);
}
}
}
return Chars;
}
//char spChar='A'-1;
Node* huffmanTree(Node* Chars)
{
Node* tChars=nullptr;
Node* temp=new Node();
Node* left=new Node();
Node* right=new Node();
if(Chars==nullptr||Chars->Next==nullptr )
{
sort(&tChars);
printList(tChars);cout<<"in loop"<<endl;
return tChars;
}
if(Chars->Next->Next==nullptr )
{
temp=new Node();
//spChar++;
temp->Next=tChars;
//temp->data=spChar;
temp->Freq=Chars->Freq+Chars->Next->Freq;
temp->left=Chars;
temp->right=Chars->Next;
Chars=Chars->Next;
Chars=Chars->Next;
tChars=temp;
sort(&Chars);
sort(&temp);
return tChars;
}
temp=new Node();
//spChar++;
temp->Next=tChars;
//temp->data=spChar;
temp->Freq=Chars->Freq+Chars->Next->Freq;
temp->left=Chars;
temp->right=Chars->Next;
Chars=Chars->Next;
Chars=Chars->Next;
tChars=temp;
sort(&Chars);
sort(&temp);
Node* end=tChars->End(tChars);//end of tChars
Node* head=Chars->End(Chars); //head of Chars
head->Next=tChars;//add tChars to Chars
end->Next=huffmanTree(Chars);//recursion with new list
return tChars;
}
string compress(string message,Node* Chars)
{
Node* temp=Chars;
string turn;
for (int i=0;i<message.length();i++)
{
temp=Chars;
while(temp->Next!=nullptr)
{
if(message[i]==temp->data)
{
turn+=temp->code;
break;
}
temp=temp->Next;
}
}
return turn;
}
string decompress(string message,Node* head)
{
string ans = "";
Node* curr = head;
for (int i=0;i<message.size();i++)
{
if (message[i] == '0')
curr = curr->left;
else
curr = curr->right;
// reached leaf node
if (curr->left==nullptr and curr->right==nullptr)
{
ans += curr->data;
curr = head;
}
}
return ans+'\0';
}
void comCode(Node** head)
{
Node* temp=*head;
if(temp->left!=nullptr)
{
temp->right->code=temp->code+'1';
temp->left ->code=temp->code+'0';
comCode(&temp->right);
comCode(&temp->left);
}
else return;
}
int main(){
string message="Hacettepe University Department of Electrical and Electronics Engineering ELE-411 Data Structure Course Implementation Project";
cout<<"Input:"<<message<<endl;
Node* Chars=insert(message);
cout<<endl<<"Inserted Chars:"<<endl;
printList(Chars);
printFreq(Chars);
sort(&Chars);
cout<<endl<<"Sorted list:"<<endl;
printList(Chars);
printFreq(Chars);
Node* head=Chars->End();//end node of list for adding new chars to the Chars
head->Next=huffmanTree(Chars);
cout<<"Data and Frequencies in Tree:"<<endl;
printList(Chars);
printFreq(Chars);
cout<<endl<<"Left and Rights of Each Leaves :"<<endl;
printTreeLeftAndRight(Chars); cout<<endl;
head=Chars->End();
comCode(&head);
printTreeCode(Chars) ;
cout<<"message :"<<endl<<message<<endl<<endl;
string compressed=compress(message,Chars);
cout<<"Compressed:"<<endl<<compressed<<endl<<endl;
cout<<"length of compressed message :"<<compressed.length()<<endl;
cout<<"length of uncompressed message:"<<message.length()*8<<endl;
string decompressed=decompress(compressed,head);
cout<<endl<<"Decompressed:"<<endl<<decompressed<<endl<<endl;
return 0;
}