-
Notifications
You must be signed in to change notification settings - Fork 0
/
TreeHuffman.h
85 lines (62 loc) · 1.69 KB
/
TreeHuffman.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#ifndef ARVOREHUFFMAN_H
#define ARVOREHUFFMAN_H
/* * * * * * * * * * * * * * * * *
*
* BIBLIOTECAS
*
* * * * * * * * * * * * * * * * */
#include <vector>
#include "Cell.h"
#include<QDebug>
#include<stdio.h>
#include <iostream>
using namespace std;
class TreeHuffman
{
/* * * * * * * * * * * * * * * * *
*
* MEMBROS DA CLASSE
*
* * * * * * * * * * * * * * * * */
vector<cell> treeHuffman;
cell ref;
int size;
QString huffmanRepresentationArray[256];
public:
/* * * * * * * * * * * * * * * * *
*
* CONSTRUTOR
*
* * * * * * * * * * * * * * * * */
TreeHuffman();
/* * * * * * * * * * * * * * * * *
*
* MÉTODOS DO BIT VECTOR
*
* * * * * * * * * * * * * * * * */
//Retorna o elemento da posição 'pos'
cell treeHuffmanAT(int pos);
//Muda coloca a ceula 'nill' na posição 'pos'
void setTreeHuffman(int pos, cell nil);
//Retorna o tamanho arvore
int getSize();
//Insere uma celula na arvore
void insertion(cell newCell);
//Ordena a arvore
void bubbleHuffman();
//Troca a posição entre os elementos 'prev' e 'next'
void swap(cell &prev, cell &next);
//Constroi a arvore de huffman
void buildHuffman();
//Retorna representação da arvore
QString treeRepresetation(cell* node,QString R = "(", bool left=true);
//Imprime a arvore na tela
void printTree(cell* node , int level = 1);
//Retorna a representação do 'Char'
QString huffmanRepresentation(int Char);
//Constroi a codificação de huffman
void buildCodification(cell *node, long int level=1);
//Calcula o lixo
int trashCalculation(int* frequency);
};
#endif // ARVOREHUFFMAN_H