Observer Methods
public boolean isEmpty()
// Returns true if no components; false
otherwise
{
  return (numItems == 0)
}
public int length()
// Returns the number of components in the
list
{
  return numItems;
}