SkillAgentSearch skills...

Perfect

A perfect minimal hash function generator

Install / Use

/learn @mixu/Perfect
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

perfect

A perfect minimal hash function generator

A perfect hash function for a set S is a hash function that maps distinct elements in S to a set of integers, with no collisions.

A minimal perfect hash function also yields a compact hash table, without any vacant slots.

http://en.wikipedia.org/wiki/Perfect_hash_function

The generator here is a port of Steve Hanov's perfect minimal hash generator.

Installing

npm install --save perfect

Usage example

var perfect = require('perfect');

var dict = { a: 'a', b: 'b', c: 'c', d: 'd' },
    tables = perfect.create(dict);

Object.keys(dict).forEach(function(key) {
  console.log('key: ' + key + ' value: ' +  perfect.lookup( tables[0], tables[1], key));
});

Related Skills

View on GitHub
GitHub Stars63
CategoryDevelopment
Updated6mo ago
Forks4

Languages

JavaScript

Security Score

72/100

Audited on Sep 9, 2025

No findings