The perfect-hash tag has no wiki summary.
19
votes
8answers
623 views
Is there a way to make this hash lookup any faster?
I have a requirement to (very) quickly process strings of a limited range, tallying their values. The input file is of the form:
January 7
March 22
September 87
March 36
and so forth. ...
10
votes
8answers
473 views
Fastest possible string key lookup for known set of keys
Consider a lookup function with the following signature, which needs to return an integer for a given string key:
int GetValue(string key) { ... }
Consider furthermore that the key-value mappings, ...
6
votes
4answers
264 views
Is it possible to make a minimal perfect hash function in this situation?
I want to create a Hash Map (or another structure if you have any suggestions) to store key value pairs, and the keys will all be inserted at once at the same time as the map is created, but I don't ...
6
votes
3answers
217 views
Hash Table lookup - with perfect hash, in C
I have a C-language app where I need to do table lookups.
The entries are strings, All are known at the start of runtime. The table is initialized once, and then looked up many times. The table can ...
5
votes
1answer
207 views
Minimal perfect hash function
I have many integers in range [0; 2^63-1]. There is only 10^8 integers, however. There is no duplicates. Full list is known at compile-time but it is just unique random numbers. These numbers never ...
3
votes
2answers
128 views
Perfect Hash Function for Perl (like gperf)?
I'm going to be using a key:value store and would like to create non-collidable hashes in Perl. Is there a Perl module, or function that I can use to generate a non-collidable hash function or table ...
1
vote
1answer
242 views
Is there a perfect hash function for the combined input sets of IMEI numbers and MAC addresses? (C implementation)
I'm looking for a hash function that I can use to give uniform unique IDs to devices that connect to our network either using a GSM modem or an ethernet connection.
So for any given device I have ...
1
vote
3answers
40 views
hashing string to an int between 0-19
I was wondering how I would hash a string value (ex: "myObjectName") to int values between 0-19
I'm guaranteed to have no more than 20 unique string values.
Thanks
1
vote
2answers
111 views
Create perfect hash for millions of items - result just needs to be “exists or not”
Does anyone know of a good library (windows) that will allow me to create a static (not runtime) perfect hash for millions of items (probably about 10m)?
I essentially have millions of sets of ...
1
vote
3answers
551 views
Perfect hash in Scala
I have some class C:
class C (...) { ... }
I want to use it to index an efficient map. The most efficient map is an Array.
So I add a "global" "static" counter in companion object to give each ...
1
vote
3answers
1k views
Determining Perfect Hash Lookup Table for Pearson Hash
I'm developing a programming language, and in my programming language, I'm storing objects as hash tables. The hash function I'm using is Pearson Hashing, which depends on a 256-bit lookup table. ...
0
votes
3answers
124 views
Convert a string to number and back to string?
I would like to know how I can convert a short ASCII string to a number (int, float, or numeric string). I saw a couple of posts here mentioned perfect hashes which seems like it might be what I need. ...
0
votes
0answers
35 views
Perfect hashing algorithm suitable for GPGPU
Can you suggest me any perfect hashing algorithm (paper about it) with these parameters:
no need to be minimal, but with hashing n elements to table of size m the m should be linear to n over some ...
0
votes
2answers
189 views
Pearson perfect hashing
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 ...
0
votes
2answers
141 views
is perfect hashing without buckets possable?
I've been asked to look for a perfect hash/one way function to be able to hash 10^11 numbers.
However as we'll be using a embedded device it wont have the memory to store the relevant buckets so I was ...
0
votes
1answer
152 views
Using CMPH in VC++
I would like to use minimal perfect hash from CMPH. Any idea how can I use it on a VC++ project?
I created a new project using VC++ 2008 Express Edition here and add the header and source files but ...