public boolean isEmpty()
{
  return frontIndex == ((backIndex + 1) % queue.length);
} // end isEmpty
// Version 4.0
