// Our hashing classes implement this Set interface.

interface Set
{
    int size();                 // number of items stored
    boolean add(Object x);      // try to add x, true on success
    boolean remove(Object x);   // try to remove x, true on success
    Object find(Object x);      // find item that equals x, or null
}

