-
Notifications
You must be signed in to change notification settings - Fork 0
/
huffman.h
44 lines (30 loc) · 1.24 KB
/
huffman.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
// Projet C
// KERNEVES Théo, DELOLME Antonin, SANTOS Aurelien, LAVEDRINE Aymeric
// Module Uffman - Header
#ifndef HUFFMAN_H
#define HUFFMAN_H
#include <stdlib.h>
#include <stdio.h>
#include "arbre.h"
#include "listes.h"
#include "liste_ext.h"
#include "file.h"
void printEntree(entree e);
// etablit la correspondance d'un char avec sa sequence de bits
void codage_dico(arbre a, entree[], int MaxCar);
// Construit un tableau d'entrees
dico get_table(arbre a, int size, entree t[]);
// Place c code par d dans
entree code(unsigned char c, dico d);
// parcours en profondeur qui etablit la correspondance d'un char avec sa sequence de bits
void parcours_profondeur(arbre a, int indice, entree table[], unsigned char *tab);
// Compte le nombre d'occurence de chaque caractere à partir d'un fichier ouvert. Renvoie le nombre de caractères différents
int countCharInFile (int T[], FILE *f) ;
// renvoie un arbre à partir d'un char et d'un poids
arbre charToLeaf (unsigned char c, int poids) ;
// Construit l'arbre de Huffman à partir de la table d'occurences
arbre stringToHuffman (int T[]) ;
// Avance dans l'arbre de huffman en fonction d'un flux de bits
unsigned char findChar (arbre huffman, Bin_file * input);
arbre fileToHuffman (FILE *f) ;
#endif