Can you suggest me any perfect hashing algorithm (paper about it) with these parameters:
- no need to be minimal, but with hashing
nelements to table of sizemthemshould be linear tonover some small factor (say < 16) - hashing function must be small enough - e.g. 32kB for 16M hashed keys
- the perfectness must not be verified by really trying to hash a whole bucket (the procedure should be run in parallel and the rollback of whole bucket if these collide would be too complicated ~ slow)
Thanks