// Monday's hash table experiment was continued. I have // only included in this file the functions and other // things that were changed or added. #include // The found out that Tuesday's hash function was terrible. // Just multiplying together ascii codes results in a huge // majority of even numbers. We also found out how to deal // with the tricky value that is 80000000 in hexadecimal. int hash(string s) { unsigned int h = 983475; for (int i=0; i