QuadraticProbingHashTable核心功能设计
- boolean insert(x) → Insert x.
- boolean remove(x) → Remove x.
- boolean contains(x) → Return true if x is present.
- void makeEmpty() → Remove all items.
/**
* Probing table implementation of hash tables.
* Note that all "matching" is based on the equals method.
*/
public class QuadraticProbingHashTable {
private static fina