摘要: public class QuadraticProbingHashTable { private static final int DEFAULT_TABLE_SIZE=10; private HashEntry[] array; private int currentsize; public QuadraticProbingHashTable(){ this(... 阅读全文
posted @ 2017-09-28 20:46 竹马今安在 阅读(1212) 评论(0) 推荐(0) 编辑
摘要: public class SeparateChainingHashTable { public SeparateChainingHashTable(){ this(DEFAULT_TABLE_SIZE); } public SeparateChainingHashTable(int size){ theLists=new LinkedList[nextPrim... 阅读全文
posted @ 2017-09-28 20:13 竹马今安在 阅读(280) 评论(0) 推荐(0) 编辑