This repository has been archived on 2026-05-01. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Projet-C-Huffman/Yûki/arbre_de_codage/main.c
2019-12-07 18:26:56 +01:00

24 lines
No EOL
312 B
C

#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);
}