Add file organization
This commit is contained in:
parent
ccddc6a1af
commit
1795f0287b
9 changed files with 140 additions and 26 deletions
18
Yûki/arbre_de_codage/main_compress.c
Normal file
18
Yûki/arbre_de_codage/main_compress.c
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
#include <stdio.h>
|
||||
#include "arbre_binaire.h"
|
||||
|
||||
int main ()
|
||||
{
|
||||
freq Test[5]={{7,'a'},{1,'c'},{3,'g'},{1,'t'},{1,'END'}};
|
||||
|
||||
}
|
||||
/*
|
||||
L est considéré comme ordonné
|
||||
*/
|
||||
arbre huffman(arbre H, freq L[])
|
||||
{
|
||||
int i;
|
||||
|
||||
printf(L[]->nb);
|
||||
printf(L[]->lettre);
|
||||
}
|
||||
Reference in a new issue