I have an application where each element is identified by a unique 32-bit number, aka the "key". My main concern is look-up speed into the Hash table for any particular key to get the attached element. The choices I have for the Hash Table are ELF, PJW, and BKDR. Security is not an issue so in that case, which of these hashing algorithms will create a table with the best look-up speed?
One other consideration. Would I get better performance if I converted the number to its string representation and used it for the key?
Note: I did find this relevant SO thread:
What integer hash function are good that accepts an integer hash key?
But the accepted answer had some some opposing viewpoints in the comments that seemed reasonable and the spread of caveats and opinions across all the other answers left me still uncertain as to the best algorithm for my use case scenario.