import java.util.Vector; public class HashTable { private Vector table; int size; final static Pair Empty = new Pair(null,null); final static Pair Deleted = new Pair(null,null); public HashTable(int s) { size = s; table = new Vector(s); for(int i=0;i