-
Notifications
You must be signed in to change notification settings - Fork 0
/
HuffmanCode.c
247 lines (203 loc) · 6.67 KB
/
HuffmanCode.c
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
# include <stdlib.h>
# include <stdio.h>
# define N 50
struct noeuds {
char Lettre; // Le caractère.
int frequence; // Frequence de la lettre.
struct noeuds* gauche, * droite; // Les noeuds a gauche et a droite .
};
struct noeud {
unsigned taille; // nombre d’éléments de l'arbre.
int mem; // Nombre maximum d'éléments dans le tableau (Memory).
struct noeuds ** tab; // le tableau de pointeurs des noeuds (double pointeur).
};
// Retourner le parent du noeud i
int parent(int i) {
return (i - 1) / 2;}
// Retourner le fils gauche du noeud i
int gauche(int i) {
return 2 * i + 1;}
// Retourner le fils droite du noeud i
int droite(int i) {
return 2 * i + 2;}
// La racine de l'arbre
int racine(struct noeud* x) {
return 0;}
// indice du dernier élément
int dernier(struct noeud* x) {
return x->taille - 1;}
// nb d’éléments dans l’arbre
int tailleTas(struct noeud* x) {
return x->taille;}
//La fonction permettant d'allouer un nouveau noeud de tas-min.
struct noeuds* NouveauNoeud(char Lettre, int frequence)
{
struct noeuds* ta = (struct noeuds*)malloc(sizeof(struct noeuds));
ta->gauche = ta->droite = NULL;
ta->Lettre = Lettre;
ta->frequence = frequence;
return ta;
}
//La fonction permettant de créer un tas minimum.
struct noeud* TasMin(int mem)
{
struct noeud* tas = (struct noeud*)malloc(sizeof(struct noeud));
tas->taille = 0;
tas->mem = mem;
tas->tab = (struct noeuds**)malloc(tas->mem * sizeof(struct noeuds*));
return tas;
}
//La fonction permettant d'échanger deux noeuds de tas-min.
void Echangenoeud(struct noeuds** a, struct noeuds** b)
{
struct noeuds* t = *a;
*a = *b;
*b = t;
}
//La fonction standard entasserMin.
void entasserMin(struct noeud *x, int i) {
int min; // l'indice de la valeur min dans le tableu
min = i;
if ((gauche(i) < tailleTas(x)) && (x->tab[gauche(i)]->frequence < x->tab[min]->frequence) )
min = gauche(i);
if ((droite(i) < tailleTas(x)) && (x->tab[droite(i)]->frequence < x->tab[min]->frequence) )
min = droite(i);
if (min != i)
{
Echangenoeud(&x->tab[min], &x->tab[i]);
entasserMin(x, min);
}
}
//La fonction standard extraire-Tas-Min.
struct noeuds* extraireTasMin(struct noeud* x)
{
struct noeuds* tas = x->tab[0]; // Initialistation du tas : ...
x->tab[0] = x->tab[dernier(x)];
-- x->taille; // Decrementation de la taille
entasserMin(x, 0);
return tas;
}
//La fonction standard inserer-Tas-Min
void insererTasMin(struct noeud* x, struct noeuds* y)
{
++x->taille; // Incrementation de la taille
int i = dernier(x);
while (i && y->frequence < x->tab[parent(i)]->frequence)
{
x->tab[i] = x->tab[parent(i)];
i = parent(i);
}
x->tab[i] = y;
}
//La fonction standard permettant de construire un tas min.
void Construirenoeud(struct noeud* x)
{
int n = dernier(x);
int i;
for (i = parent(n); i >= 0; --i)
entasserMin(x, i);
}
//La fonction permettant d'initialiser et créer un tas min.
struct noeud* construireTasMin(char Lettre[], int frequence[], int taille)
{
struct noeud* x = TasMin(taille);
for (int i = 0; i < taille; ++i)
x->tab[i] = NouveauNoeud(Lettre[i], frequence[i]);
x->taille = taille;
Construirenoeud(x);
return x;
}
//La fonction principale qui construit l'arbre Huffman.
struct noeuds* ArbreHuffman(char Lettre[], int frequence[], int taille)
{
struct noeuds* gauche, * droite, * Parent;
struct noeud* x = construireTasMin(Lettre, frequence, taille);
while (x->taille != 1) // Tester si il est de taille 1
{
gauche = extraireTasMin(x);
droite = extraireTasMin(x);
Parent = NouveauNoeud('$', gauche->frequence + droite->frequence);
Parent->gauche = gauche;
Parent->droite = droite;
insererTasMin(x, Parent);
}
return extraireTasMin(x);
}
//Fonctions permettent de calculer la frequence totale et d'afficher le resultat.
void Somme_Fre(int tab[], int n)
{
int somme = 0;
for (int i = 0; i < n; i++)
somme = somme + tab[i];
printf(" La Frequence totale = %d | \n", somme);
}
//Fonctions permettent d'afficher un tableau.
void AfficherTab(int tab[], int n)
{
int i;
printf(" ");
for (i = 0; i < n; ++i)
printf("%d", tab[i]);
printf("\n");
}
//Fonctions permettent d'exectuer des tests et afficher les résultats.
void AfficherCode(struct noeuds* racine, int tab[], int Parent)
{
//---Condition sur les fils
if (racine->gauche)
{
tab[Parent] = 0;
AfficherCode(racine->gauche, tab, Parent + 1);
}
if (racine->droite)
{
tab[Parent] = 1;
AfficherCode(racine->droite, tab, Parent + 1);
}
//---Condition sur les feuilles
if (!(racine->gauche) && !(racine->droite))
{
printf(" %c | ", racine->Lettre);
AfficherTab(tab, Parent);
}
}
//La fonction permettant de construire un arbre Huffman
void Huffman(char Lettre[], int frequence[], int taille)
{
struct noeuds* racine = ArbreHuffman(Lettre, frequence, taille); // Construire un Tas min
int tab[N], Parent = 0; // Definir le tableau et l'initiation du parent.
AfficherCode(racine, tab, Parent); // Affichage des resultats
int Binaire = taille * 8; // 8 Represente un octet.
printf("\n Taille en bits: %d | \n", Binaire); // Affichage de la taille des caracteres **sans doublons
Somme_Fre(frequence, taille); // Affichage de la somme des frequence / Verification
}
//-----------------------------------Main-----------------------------------------------
int main()
{
char donne[] = { 'A', 'B', 'C', 'D', 'E', 'F'}; //L'entree doit respecter cette maniere ( Declaration).
int frequence[] = { 45, 13, 12, 16, 9, 5 }; //L'entree doit respecter cette maniere ( Declaration).
int taille = sizeof(donne) / sizeof(*donne);
printf("------------+");
for (int i = 0; i < taille; i++) {
printf("----+");
}
printf("\n Caractere |");
for (int i = 0; i < taille; i++) {
printf(" %c |", donne[i]);
}
printf("\n------------+");
for (int i = 0; i < taille; i++) {
printf("----+");
}
printf("\n frequence |");
for (int i = 0; i < taille; i++) {
printf(" %d |", frequence[i]);
}
printf("\n------------+");
for (int i = 0; i < taille; i++) {
printf("----+");
}
printf("\n\n Caractere | Huffman code binaire ");
printf("\n----------------------------------\n");
Huffman(donne, frequence, taille);
}