Old stuff/ecole_etude_fac_de_pau/licence_2/struct/tp6/arbrebin.h~
(Deskargatu)#ifndef ARBREBIN
#define ARBREBIN
#include <stdio.h>
#include <stdlib.h>
typedef int donneesElem;
struct noeud
{
struct noeud* g;
struct noeud* d;
donneesElem* etiquette;
};
typedef struct noeud NOEUD;
typedef struct noeud* arbre;
arbre arbre_vide();
donneesElem* contenu(NOEUD);
int est_vide(arbre);
NOEUD* racine(arbre);
arbre gauche(arbre);
arbre droit(arbre);
arbre construire(NOEUD,arbre,arbre);
#endif