I have been asked what is a problem with hash function:
h(S) = ((sum(S[i]*x**i)) mod p) mod m,
where i = {1, ..., s-1}
. S
- some long string, x
- some positive number, s
- length of S
, p
- number(1e9), m
- hash table capacity.
How can I lower probability of collision in this hash function? Maybe x
and p
must be relatively prime numbers, or some group of string in this hash function would give same hashes and I need somehow change it?
I thought that problem is overflow and tried Horner's method, but the problem turned out to be collisions
I have been asked what is a problem with hash function:
h(S) = ((sum(S[i]*x**i)) mod p) mod m,
where i = {1, ..., s-1}
. S
- some long string, x
- some positive number, s
- length of S
, p
- number(1e9), m
- hash table capacity.
How can I lower probability of collision in this hash function? Maybe x
and p
must be relatively prime numbers, or some group of string in this hash function would give same hashes and I need somehow change it?
I thought that problem is overflow and tried Horner's method, but the problem turned out to be collisions
Share Improve this question edited Feb 20 at 23:55 Barmar 784k57 gold badges548 silver badges659 bronze badges asked Feb 20 at 23:49 PavelPavel 111 bronze badge 6- 1 Many languages have hash functions built in or in common libraries. Why are you writing your own? They also often have built-in hash table implementations. – Barmar Commented Feb 20 at 23:56
- 1 This might be better asked at Cryptography, I think. – Ken Y-N Commented Feb 21 at 0:02
- @Barmar, I need to implement my own hash function and hash table as part of a coursework assignment. I can't use built in hash functions – Pavel Commented Feb 21 at 11:23
- @Ken Y-N, thanks, i will try – Pavel Commented Feb 21 at 11:25
- 1 @KenY-N If it's for hash tables, cryptographically secure hashing is not usually a concern. Speed and collision avoidance are more important. – Barmar Commented Feb 21 at 15:33
1 Answer
Reset to default 0Consider modifying your Horner's method code to provide some feedback from prior steps. Something like this: hᵢ = (Sᵢ ⋅ hᵢ₋₁ + c) mod p
where c is a non-zero constant below p.
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745173275a4615057.html
评论列表(0条)