What integer hash function are good that accepts an integer hash key?

前端 未结 11 1758
孤街浪徒
孤街浪徒 2020-11-22 17:23

What integer hash function are good that accepts an integer hash key?

11条回答
  •  鱼传尺愫
    2020-11-22 17:46

    I don't think we can say that a hash function is "good" without knowing your data in advance ! and without knowing what you're going to do with it.

    There are better data structures than hash tables for unknown data sizes (I'm assuming you're doing the hashing for a hash table here ). I would personally use a hash table when I Know I have a "finite" number of elements that are needing stored in a limited amount of memory. I would try and do a quick statistical analysis on my data, see how it is distributed etc before I start thinking about my hash function.

提交回复
热议问题