perfect-hash 1.0.2
Library to create perfect hash function
To use this package, run the following command in your project's root directory:
Manual usage
Put the following dependency into your project's dependences section:
Perfect-hash
<img src="https://github.com/skoppe/perfect-hash/workflows/build/badge.svg"/>
Generates a perfect hash function for a set of strings.
Can be used to quickly determine if a string belongs in a set or a subset. Instead of comparing strings (slow) you compare its hash (fast). The set of string must be known upfront.
Examples
Either supply a list of strings:
import std.random;
import perfecthash.generator;
auto keys = ["asdf", "fdsa", "car", "garage", "elephant", "kangeroo"];
auto rnd = Random(9123);
auto ph = createPerfectHashFunction(keys, rnd);
foreach(idx, key; keys)
assert(ph(key) == idx);
Or a list of KeyValue where you yourself determine to which value each string gets hashed to. Useful if a set of strings consists of subsets and you quickly want to determine which subset it belongs to.
Here is a set of strings which contains either animals or things.
import std.random;
import perfecthash.generator;
enum Class {
Animal = 0,
Thing = 1
}
auto keys = [KeyValue("gorilla",Class.Animal), KeyValue("car",Class.Thing), KeyValue("house",Class.Thing), KeyValue("kangeroo",Class.Animal), KeyValue("elephant",Class.Animal), KeyValue("door",Class.Thing)];
auto rnd = Random(9812);
auto ph = createPerfectHashFunction(keys, rnd);
assert(ph("car") == Class.Thing);
assert(ph("elephant") == Class.Animal);
To quickly determine whether a string is in a set:
import std.random;
import perfecthash.generator;
auto keys = ["asdf", "fdsa", "car", "garage", "elephant", "kangeroo"];
auto rnd = Random(9123);
auto ph = createPerfectHashFunction(keys, rnd);
assert(keys[ph("garage")] == "garage");
assert(keys[ph("notfound")] != "notfound");
Call toDModule("functionName", "my.module")
on a perfect hash function to get a string which contains a static version of the hash function. You can save this to a D file and include in your project.
Our sponsors
- Registered by Koppe
- 1.0.2 released 4 years ago
- skoppe/perfect-hash
- MIT
- Copyright © 2020, Sebastiaan Koppe
- Authors:
- Dependencies:
- none
- Versions:
-
1.0.2 2020-Jul-30 1.0.1 2020-Jul-30 1.0.0 2020-Jul-29 0.7.0 2020-Jan-20 0.6.0 2020-Jan-20 - Download Stats:
-
-
0 downloads today
-
0 downloads this week
-
0 downloads this month
-
36 downloads total
-
- Score:
- 0.8
- Short URL:
- perfect-hash.dub.pm