A ChainedHashTable<T> contains an array of what type?
Ans: it is an array of Chains, so the type of the entry should support find, add, remove functions. ArrayUSet<T>In ChainedHashTable, for current size = n and current array length allocated = m, the relationship maintained is:
In ChainedHashTable the invariant current size ≤ array length is maintained. Why?
A LinearHashTable<T> contains an array of what type?
In LinearHashTable, for current size = n and current array length allocated = m, the relationship maintained is:
In LinearHashTable the invariant current size ≤ half of array length is maintained. Why?
hashCode(T x) returns what?
About hashFromInt(unsigned int x):