
//  HASHTABLE.H  

const int MAXSIZE = 1000;


class HashTable {

      private:

         Individual *everyone[MAXSIZE];         //  The array of individuals.


      protected:


      public:

         HashTable()                        //  Default constructor.  Reads chromosomes from 
              {                               //   .
              };  
         boolean Empty();                     //  Returns true if no individuals in array.
         boolean Member(Individual *indi);     //  Returns true if indi is in current array.
         int IndexOf(Individual indi);        //  Returns position of indi in current array.
                                              //   returns -1 if not in array.
         void printEveryone();                //  Prints each chromosome on a separate line, to
                                              //   console.
         int totalnumber();                   //  Prints total number of chromosomes stored in array.
};

