SeparateChainingHashTable核心功能设计
- boolean insert(x) → Insert x.
- boolean remove(x) → Remove x.
- boolean contains(x) → Return true if x is present.
- void makeEmpty() → Remove all items.
import java.util.LinkedList;
import java.util.List;
/**
* Separate chaining table implementation of hash tables.
* Note that all "matching" is based on the equals method.
* @author BlankSpace
*/
public