Declare basic function for the huffman tree
This commit is contained in:
parent
493191abe5
commit
2e95c244b6
1 changed files with 21 additions and 0 deletions
21
arbre.h
Normal file
21
arbre.h
Normal file
|
@ -0,0 +1,21 @@
|
|||
#ifndef _ARBRE_HUFFMAN_H_
|
||||
#define _ARBRE_HUFFMAN_H_ 1
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "liste.h"
|
||||
|
||||
// Définition de l'Arbre
|
||||
typedef Cellule *Arbre;
|
||||
|
||||
// Convertis une liste en Arbre
|
||||
void convertisseurListeEnArbre(Liste *liste);
|
||||
|
||||
// Encode un fichier
|
||||
void encode(FILE *entree, FILE *sortie);
|
||||
|
||||
// Décode un fichier
|
||||
void decode(FILE *entree, FILE *sortie);
|
||||
|
||||
#endif
|
Reference in a new issue