5void affiche(
Liste* L )
8 for ( A = Liste_debut( L );
10 A = Liste_suivant( L, A ) ) {
11 printf(
"%f ", Liste_valeur( L, A ) );
18 Liste* L = Liste_creer( );
19 Adr A = Liste_debut( L );
21 while ( x < 100000.0 )
23 A = Liste_insere( L, A, x );
24 A = Liste_suivant( L, A );
Definit le noeud d'une liste doublement chaînée.