Here's my hash function for Strings
public class GoodHashFunctor implements HashFunctor {
@Override
public int hash(String item) {
String binaryRepString = "";
for(int i = 0; i < item.length(); i++){
// Add the String version of the binary version of the integer version of each character in item
binaryRepString += Integer.toBinaryString((int)(item.charAt(i)));
}
long longVersion = Long.parseLong(binaryRepString, 2) % Integer.MAX_VALUE;
return (int) longVersion;
}
}
However, when I try hashing large Strings (around 10-15 characters), I'm getting errors because when it tries to parseLong, it dies because it's too big a number.
What do you all think I should do? And my professor said we can't use Java's hashCode()
I saw a similar post where the best answer was to hash this way:
int hash=7;
for (int i=0; i < strlen; i++) {
hash = hash*31+charAt(i);
}
But wouldn't I run into the same problem? I guess it'd probably take a lot longer Strings to break it this new way. I dunno I'm fairly confused...
binaryRepStringwill contain the value0110000101100010011000110110010001100101 0110011001100111, which you then try to parse as alongin base 2. This is 63 bits, which will fit into along. However, if you add one more byte to the string, the intermediate value is now over 64 bits and no longer fits. – Jim Garrison Jul 15 '11 at 16:25