Consider the hash function object type
Class hFint256
{
Public:
unsigned int operator() (int item) const
{
Return (item/16 % 256);
}
};
(a) What is the size of the hash table?
(b) What are hFint256() (16) and hFint256() (257)?
(c) In general, what is the action of the hash function?