Si votre email correspond à un compte, vous recevrez un lien de réinitialisation.
typedef struct {uint Key;int Nb;uint *List;} ListTri;int fcmp(const void * Elt1,const void * Elt2){MON PROBLEME EST LA !!!comment manipuler les structures Elt1 et Elt2 ?????
}
typedef struct { uint Key; int Nb; uint *List; } ListTri; int fcmp(const void * Elt1,const void * Elt2) { MON PROBLEME EST LA !!! comment manipuler les structures Elt1 et Elt2 ?????
David Roman écrit:typedef struct {uint Key;int Nb;uint *List;} ListTri;int fcmp(const void * Elt1,const void * Elt2){MON PROBLEME EST LA !!!comment manipuler les structures Elt1 et Elt2 ?????Par exemple :struct ListTri l1 = Elt1, l2 = Elt2;
return l1->Key - l2->Key;}
David Roman <roman@cesr.fr> écrit: typedef struct { uint Key; int Nb; uint *List; } ListTri; int fcmp(const void * Elt1,const void * Elt2) { MON PROBLEME EST LA !!! comment manipuler les structures Elt1 et Elt2 ????? Par exemple : struct ListTri l1 = Elt1, l2 = Elt2;
return l1->Key - l2->Key; }