We are currently dealing with hash function in my class. Our instructor asked us to a hash function on the internet to compare to the two we have used in our code.
T
Use boost::hash
#include
...
std::string a = "ABCDE"; size_t b = boost::hash_value(a);