Name: Anonymous 2011-12-04 12:34
tell me a good and fast hashing algorithm /prog/. I will be using it to compare relatively big data with each other.
unsigned long hash(unsigned long data, unsigned long hash_table_size)
{
return data % hash_table_size;
}