Add Beginning of Compress Function

This commit is contained in:
NyxiumYuuki 2019-12-07 21:54:27 +01:00
parent ab7f63447a
commit d89bc3383e
No known key found for this signature in database
GPG key ID: 03E8F3CF3183323A
7 changed files with 24 additions and 17 deletions

View file

@ -1,7 +1,7 @@
#ifndef __ARBRE_BINAIRE__
#define __ARBRE_BINAIRE__
typedef char Elt;
typedef int Elt;
typedef int bool;
struct znoeud {
Elt elt ;
@ -19,7 +19,7 @@ arbre fils_droit(arbre a);
Elt racine(arbre a);
bool est_arbre_vide(arbre a);
arbre creer_feuille(Elt e) ;
arbre creer_feuille(Elt e, int p) ;
bool est_feuille(arbre a) ;
#endif