First Commit
This commit is contained in:
parent
3f207ccdd3
commit
74f6b061ba
22 changed files with 435 additions and 0 deletions
24
Yûki/arbre_de_codage/main.c
Normal file
24
Yûki/arbre_de_codage/main.c
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
#include <stdio.h>
|
||||
#include "arbre_binaire.h"
|
||||
|
||||
struct zoccurence{
|
||||
int nb;
|
||||
char lettre;
|
||||
};
|
||||
typedef struct zoccurence occ;
|
||||
typedef struct zoccurence * freq;
|
||||
|
||||
int main ()
|
||||
{
|
||||
|
||||
}
|
||||
/*
|
||||
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