Add Beginning of Compress Function
This commit is contained in:
parent
ab7f63447a
commit
d89bc3383e
7 changed files with 24 additions and 17 deletions
|
|
@ -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
|
||||
|
|
|
|||
Reference in a new issue