First Commit
This commit is contained in:
parent
3f207ccdd3
commit
74f6b061ba
22 changed files with 435 additions and 0 deletions
15
Yûki/arbre_de_codage/frequence_dapparition_char.c
Normal file
15
Yûki/arbre_de_codage/frequence_dapparition_char.c
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
struct zoccurence{
|
||||
int nb;
|
||||
char lettre;
|
||||
};
|
||||
typedef struct zoccurence occ;
|
||||
typedef struct zoccurence * freq;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in a new issue