I'm trying to write a generator that produces Pearson perfect hashes. Note that I don't need a minimal perfect hash. Wikipedia says that a Pearson perfect hash can be found in O(|S|) time using a randomized algorithm (where S is the set of keys). However, I haven't been able to find such an algorithm online. Is this even possible?

Note: I don't want to use gperf/cmph/etc., I'd rather write my own implementation.

link|improve this question

feedback

2 Answers

Maybe you missed this Wikipedia article, which has the algorithm in pseudocode.

link|improve this answer
That article explains Pearson hashing. It doesn't explain how to find a permutation table that results in a perfect hash. – Matt Fichman May 17 '11 at 4:42
feedback

This is the best resource I have found so far, it briefly describes the algorithm on page 4 http://cs.mwsu.edu/~griffin/courses/2133/downloads/Old_Assignments/p677-pearson.pdf

link|improve this answer
The link is no longer valid. – Emanuel Mar 20 at 16:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.