djb2 Hash Function

后端 未结 4 1693
暖寄归人
暖寄归人 2020-12-16 04:49

I am using the djb2 algorithm to generate the hash key for a string which is as follows

hash(unsigned char *str)
{
    unsigned long hash = 5381;
    int c;
         


        
相关标签:
4条回答
  • 2020-12-16 05:26

    return (hash & 0xFFFFFFFF); // or whatever mask you want, doesn't matter as long as you keep it consistent.

    0 讨论(0)
  • 2020-12-16 05:27

    Hash calculations often overflow. That's generally not a problem at all, so long as you have guarantees about what's going to happen when it does overflow. Don't forget that the point of a hash isn't to have a number which means something in terms of magniture etc - it's just a way of detecting equality. Why would overflow interfere with that?

    0 讨论(0)
  • 2020-12-16 05:28

    I'm thinking your using a static/runtime analyser to warn about integer overflows? Well this is one of those cases where you can ignore the warning. Hash functions are designed for specific types of properties, so don't worry about the warnings from your analyser. Just don't try to create a hash function yourself!

    0 讨论(0)
  • 2020-12-16 05:30

    You shouldn't do that. Since there is no modulo, integer overflow is the expected behavior for the function (and it was designed with it in mind). Why do you want to change it?

    0 讨论(0)
提交回复
热议问题