1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
typedef struct Arbre *Arbre;
struct Arbre
{
Arbre *sag;
Arbre *sad;
Livre livre;
};
Arbre creerArbre()
{
return NULL;
}
Arbre creerArbreAvecLivre(Livre livre)
{
Arbre arbre = (Arbre *)malloc(sizeof(Arbre));
arbre->livre = livre;
arbre->sag = NULL;
arbre->sad = NULL;
return NULL;
}
int main()
{
Livre a = creerLivre(1);
Livre b = creerLivre(2);
Livre c = creerLivre(3);
Livre d = creerLivre(4);
Livre e = creerLivre(5);
Arbre abr = creerArbre();
Arbre abr2 = creerArbreAvecLivre(a);
return 0;
} |