Re: Perfect hashing for Py

2008-07-12 Thread Raymond Hettinger
On Jul 12, 10:13 am, Raymond Hettinger <[EMAIL PROTECTED]> wrote: > On Jul 11, 3:01 pm, [EMAIL PROTECTED] wrote: > > > I have found this perfect hash (minimal too) > > implementation:http://burtleburtle.net/bob/hash/perfect.html > > > I have already translated part of it to D, and it seems to work

Re: Perfect hashing for Py

2008-07-12 Thread Raymond Hettinger
On Jul 11, 3:01 pm, [EMAIL PROTECTED] wrote: > I have found this perfect hash (minimal too) > implementation:http://burtleburtle.net/bob/hash/perfect.html > > I have already translated part of it to D, and it seems to work well > enough. As discussed in the PyConDue, I think this may be used in >

Re: Perfect hashing for Py

2008-07-11 Thread Casey
On Jul 11, 8:01 am, [EMAIL PROTECTED] wrote: > Following links from this > thread:http://groups.google.com/group/comp.lang.python/browse_thread/thread/... > > I have found this perfect hash (minimal too) > implementation:http://burtleburtle.net/bob/hash/perfect.html > > I have already translated