www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

dichotomique.h (368B)


      1 #ifndef RECHERCHE_DICHOTOMIQUE_DICHOTOMIQUE_H
      2 #define RECHERCHE_DICHOTOMIQUE_DICHOTOMIQUE_H
      3 
      4 typedef char EtatRechercheDichotomique;
      5 
      6 int rechercheDichotomiquePremier(void* e, void* t, int taille, AccesseurIndex get, ComparaisonStricte comparer);
      7 int rechercheDichotomiqueDernier(void* e, void* t, int taille, AccesseurIndex get, ComparaisonStricte comparer);
      8 
      9 #endif