Here is what the algorithm says.
hash = FNV_offset_basis
for each octet_of_data to be hashed
hash = hash * FNV_prime
hash = hash XOR octet_of_data
return hash
but if i have a set of strings then what shall i take as the FNV_offset_basis,
and what is the meaning of for each octet of data to be hashed.
Also what should be the size of table, say there are N strings to be hashed.
Kindly help me with the modifications for the strings.
Thanks.