Version Finale (Sans erreur de traitement)
This commit is contained in:
parent
c8a0b3f359
commit
81a2a61221
11 changed files with 445 additions and 236 deletions
|
|
@ -4,9 +4,9 @@
|
|||
#include "arbre_de_codage/arbre_binaire.h"
|
||||
#include "gestion_des_fichiers/gestion_fichiers.h"
|
||||
|
||||
struct lexique{
|
||||
struct lexique{ //Struct permettant d'associer une lettre et son code
|
||||
char lettre;
|
||||
char code[256];
|
||||
char code[256]; //N'ayant
|
||||
};
|
||||
typedef struct lexique lex;
|
||||
typedef struct lexique* plex;
|
||||
|
|
@ -18,5 +18,6 @@ void afficher_tab(arbre T[], int n);
|
|||
void init_tab(arbre T[], int n);
|
||||
void get_lexique(FILE *file, plex Code[], arbre huff);
|
||||
void init_codage(plex Code[], int n);
|
||||
void decompression(arbre a,Bin_file*input);
|
||||
|
||||
#endif
|
||||
Reference in a new issue