/**
 * This is the default constructor. It will set the table size to
 * 89,this seems to be the right number for a 2n+1 table growth for
 * hashs.
 */
public MondoHashTable()
{
  _myVec = new Vector(89);
  _size = 0;
  _load = .8;
  _currLoad = 0.0;
  _chainLen = 5;
  _rehash = false;
  for(int i = 0; i < 89; i++)
    {
      _myVec.add(i,null);
    }
}    

/**
 * The overloaded constructor allows the building of the hash table
 * with a given size.
 *
 * @param size An integer that will give the initial size of the table.
 */
public MondoHashTable(int size)
{
  _myVec = new Vector(size);
  _size = 0;
  _load = .8;
  _currLoad = 0.0;
  _chainLen = 5;
  _rehash = false;
  for(int i = 0; i < size; i++)
    {
      _myVec.add(i,null);
    }
}
