2011-05-23 21:01:08 +03:00
|
|
|
#ifndef __CXXMPH_MPH_INDEX_H__
|
|
|
|
#define __CXXMPH_MPH_INDEX_H__
|
|
|
|
|
|
|
|
// Minimal perfect hash abstraction implementing the BDZ algorithm
|
2011-11-05 19:15:11 +02:00
|
|
|
//
|
|
|
|
// This is a data structure that given a set of known keys S, will create a
|
|
|
|
// mapping from S to [0..|S|). The class is informed about S through the Reset
|
|
|
|
// method and the mapping is queried by calling index(key).
|
|
|
|
//
|
|
|
|
// This is a pretty uncommon data structure, and if you application has a real
|
|
|
|
// use case for it, chances are that it is a real win. If all you are doing is
|
|
|
|
// a straightforward implementation of an in-memory associative mapping data
|
2012-06-03 10:17:14 +03:00
|
|
|
// structure, then it will probably be slower. Take a look at mph_map.h
|
2012-04-12 22:36:23 +03:00
|
|
|
// instead.
|
2011-11-05 19:15:11 +02:00
|
|
|
//
|
2012-03-20 03:48:11 +02:00
|
|
|
// Thesis presenting this and similar algorithms:
|
|
|
|
// http://homepages.dcc.ufmg.br/~fbotelho/en/talks/thesis2008/thesis.pdf
|
|
|
|
//
|
2011-11-05 19:15:11 +02:00
|
|
|
// Notes:
|
|
|
|
//
|
|
|
|
// Most users can use the SimpleMPHIndex wrapper instead of the MPHIndex which
|
|
|
|
// have confusing template parameters.
|
|
|
|
// This class only implements a minimal perfect hash function, it does not
|
|
|
|
// implement an associative mapping data structure.
|
2011-05-23 21:01:08 +03:00
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#include <cassert>
|
2012-03-14 06:29:13 +02:00
|
|
|
#include <climits>
|
2011-05-23 21:01:08 +03:00
|
|
|
#include <cmath>
|
2011-11-10 20:44:37 +02:00
|
|
|
#include <unordered_map> // for std::hash
|
2011-05-23 21:01:08 +03:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
using std::cerr;
|
|
|
|
using std::endl;
|
|
|
|
|
|
|
|
#include "seeded_hash.h"
|
2012-03-14 09:51:55 +02:00
|
|
|
#include "mph_bits.h"
|
2011-05-23 21:01:08 +03:00
|
|
|
#include "trigraph.h"
|
|
|
|
|
|
|
|
namespace cxxmph {
|
|
|
|
|
|
|
|
class MPHIndex {
|
|
|
|
public:
|
2012-06-03 09:13:06 +03:00
|
|
|
MPHIndex(bool square = false, double c = 1.23, uint8_t b = 7) :
|
|
|
|
c_(c), b_(b), m_(0), n_(0), k_(0), square_(square), r_(1),
|
2012-03-19 08:18:57 +02:00
|
|
|
ranktable_(NULL), ranktable_size_(0) { }
|
2011-05-23 21:01:08 +03:00
|
|
|
~MPHIndex();
|
|
|
|
|
|
|
|
template <class SeededHashFcn, class ForwardIterator>
|
2012-03-12 04:21:18 +02:00
|
|
|
bool Reset(ForwardIterator begin, ForwardIterator end, uint32_t size);
|
2011-05-23 21:01:08 +03:00
|
|
|
template <class SeededHashFcn, class Key> // must agree with Reset
|
2011-11-05 19:15:11 +02:00
|
|
|
// Get a unique identifier for k, in the range [0;size()). If x wasn't part
|
|
|
|
// of the input in the last Reset call, returns a random value.
|
2011-05-23 21:01:08 +03:00
|
|
|
uint32_t index(const Key& x) const;
|
|
|
|
uint32_t size() const { return m_; }
|
|
|
|
void clear();
|
|
|
|
|
2011-11-05 19:15:11 +02:00
|
|
|
// Advanced users functions. Please avoid unless you know what you are doing.
|
2012-03-22 05:58:02 +02:00
|
|
|
uint32_t perfect_hash_size() const { return n_; }
|
2011-06-14 09:38:23 +03:00
|
|
|
template <class SeededHashFcn, class Key> // must agree with Reset
|
2012-03-22 05:58:02 +02:00
|
|
|
uint32_t perfect_hash(const Key& x) const; // way faster than the minimal
|
2012-06-03 09:13:06 +03:00
|
|
|
template <class SeededHashFcn, class Key> // must agree with Reset
|
|
|
|
uint32_t perfect_square(const Key& x) const; // even faster but needs square=true
|
2012-03-20 17:06:30 +02:00
|
|
|
uint32_t minimal_perfect_hash_size() const { return size(); }
|
2011-06-14 09:38:23 +03:00
|
|
|
template <class SeededHashFcn, class Key> // must agree with Reset
|
|
|
|
uint32_t minimal_perfect_hash(const Key& x) const;
|
2011-11-05 19:15:11 +02:00
|
|
|
|
2011-05-23 21:01:08 +03:00
|
|
|
private:
|
|
|
|
template <class SeededHashFcn, class ForwardIterator>
|
|
|
|
bool Mapping(ForwardIterator begin, ForwardIterator end,
|
|
|
|
std::vector<TriGraph::Edge>* edges,
|
|
|
|
std::vector<uint32_t>* queue);
|
|
|
|
bool GenerateQueue(TriGraph* graph, std::vector<uint32_t>* queue);
|
|
|
|
void Assigning(const std::vector<TriGraph::Edge>& edges,
|
|
|
|
const std::vector<uint32_t>& queue);
|
|
|
|
void Ranking();
|
|
|
|
uint32_t Rank(uint32_t vertex) const;
|
|
|
|
|
|
|
|
// Algorithm parameters
|
2012-03-20 03:48:11 +02:00
|
|
|
// Perfect hash function density. If this was a 2graph,
|
|
|
|
// then probability of having an acyclic graph would be
|
|
|
|
// sqrt(1-(2/c)^2). See section 3 for details.
|
|
|
|
// http://www.it-c.dk/people/pagh/papers/simpleperf.pdf
|
|
|
|
double c_;
|
2011-05-23 21:01:08 +03:00
|
|
|
uint8_t b_; // Number of bits of the kth index in the ranktable
|
|
|
|
|
|
|
|
// Values used during generation
|
|
|
|
uint32_t m_; // edges count
|
|
|
|
uint32_t n_; // vertex count
|
|
|
|
uint32_t k_; // kth index in ranktable, $k = log_2(n=3r)\varepsilon$
|
2012-06-03 09:13:06 +03:00
|
|
|
bool square_; // make bit vector size a power of 2
|
2011-05-23 21:01:08 +03:00
|
|
|
|
|
|
|
// Values used during search
|
|
|
|
|
|
|
|
// Partition vertex count, derived from c parameter.
|
|
|
|
uint32_t r_;
|
2012-03-14 06:29:13 +02:00
|
|
|
uint32_t nest_displacement_[3]; // derived from r_
|
|
|
|
|
2012-03-19 08:10:42 +02:00
|
|
|
// The array containing the minimal perfect hash function graph.
|
|
|
|
dynamic_2bitset g_;
|
2012-03-16 07:54:16 +02:00
|
|
|
uint8_t threebit_mod3[10]; // speed up mod3 calculation for 3bit ints
|
2011-05-23 21:01:08 +03:00
|
|
|
// The table used for the rank step of the minimal perfect hash function
|
|
|
|
const uint32_t* ranktable_;
|
|
|
|
uint32_t ranktable_size_;
|
|
|
|
// The selected hash seed triplet for finding the edges in the minimal
|
|
|
|
// perfect hash function graph.
|
|
|
|
uint32_t hash_seed_[3];
|
|
|
|
};
|
|
|
|
|
|
|
|
// Template method needs to go in the header file.
|
|
|
|
template <class SeededHashFcn, class ForwardIterator>
|
2012-03-12 04:21:18 +02:00
|
|
|
bool MPHIndex::Reset(
|
|
|
|
ForwardIterator begin, ForwardIterator end, uint32_t size) {
|
2011-06-13 08:16:19 +03:00
|
|
|
if (end == begin) {
|
|
|
|
clear();
|
|
|
|
return true;
|
|
|
|
}
|
2012-03-12 04:21:18 +02:00
|
|
|
m_ = size;
|
2011-05-23 21:01:08 +03:00
|
|
|
r_ = static_cast<uint32_t>(ceil((c_*m_)/3));
|
|
|
|
if ((r_ % 2) == 0) r_ += 1;
|
2012-03-14 06:29:13 +02:00
|
|
|
// This can be used to speed mods, but increases occupation too much.
|
|
|
|
// Needs to try http://gmplib.org/manual/Integer-Exponentiation.html instead
|
2012-06-03 09:13:06 +03:00
|
|
|
if (square_) r_ = nextpoweroftwo(r_);
|
2012-03-16 07:54:16 +02:00
|
|
|
nest_displacement_[0] = 0;
|
|
|
|
nest_displacement_[1] = r_;
|
|
|
|
nest_displacement_[2] = (r_ << 1);
|
2012-04-15 06:03:00 +03:00
|
|
|
for (uint32_t i = 0; i < sizeof(threebit_mod3); ++i) threebit_mod3[i] = i % 3;
|
2012-03-14 06:29:13 +02:00
|
|
|
|
2011-05-23 21:01:08 +03:00
|
|
|
n_ = 3*r_;
|
|
|
|
k_ = 1U << b_;
|
|
|
|
|
|
|
|
// cerr << "m " << m_ << " n " << n_ << " r " << r_ << endl;
|
|
|
|
|
2011-11-05 19:15:11 +02:00
|
|
|
int iterations = 1000;
|
2011-05-23 21:01:08 +03:00
|
|
|
std::vector<TriGraph::Edge> edges;
|
|
|
|
std::vector<uint32_t> queue;
|
|
|
|
while (1) {
|
|
|
|
// cerr << "Iterations missing: " << iterations << endl;
|
2012-03-07 08:48:20 +02:00
|
|
|
for (int i = 0; i < 3; ++i) hash_seed_[i] = random();
|
2011-05-23 21:01:08 +03:00
|
|
|
if (Mapping<SeededHashFcn>(begin, end, &edges, &queue)) break;
|
|
|
|
else --iterations;
|
|
|
|
if (iterations == 0) break;
|
|
|
|
}
|
|
|
|
if (iterations == 0) return false;
|
|
|
|
Assigning(edges, queue);
|
|
|
|
std::vector<TriGraph::Edge>().swap(edges);
|
|
|
|
Ranking();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class SeededHashFcn, class ForwardIterator>
|
|
|
|
bool MPHIndex::Mapping(
|
|
|
|
ForwardIterator begin, ForwardIterator end,
|
|
|
|
std::vector<TriGraph::Edge>* edges, std::vector<uint32_t>* queue) {
|
|
|
|
TriGraph graph(n_, m_);
|
|
|
|
for (ForwardIterator it = begin; it != end; ++it) {
|
2012-03-20 16:47:55 +02:00
|
|
|
h128 h = SeededHashFcn().hash128(*it, hash_seed_[0]);
|
2012-03-14 00:31:35 +02:00
|
|
|
// for (int i = 0; i < 3; ++i) h[i] = SeededHashFcn()(*it, hash_seed_[i]);
|
2011-05-23 21:01:08 +03:00
|
|
|
uint32_t v0 = h[0] % r_;
|
|
|
|
uint32_t v1 = h[1] % r_ + r_;
|
|
|
|
uint32_t v2 = h[2] % r_ + (r_ << 1);
|
|
|
|
// cerr << "Key: " << *it << " edge " << it - begin << " (" << v0 << "," << v1 << "," << v2 << ")" << endl;
|
|
|
|
graph.AddEdge(TriGraph::Edge(v0, v1, v2));
|
|
|
|
}
|
|
|
|
if (GenerateQueue(&graph, queue)) {
|
|
|
|
graph.ExtractEdgesAndClear(edges);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-06-03 09:13:06 +03:00
|
|
|
template <class SeededHashFcn, class Key>
|
|
|
|
uint32_t MPHIndex::perfect_square(const Key& key) const {
|
|
|
|
if (!g_.size()) return 0;
|
|
|
|
h128 h = SeededHashFcn().hash128(key, hash_seed_[0]);
|
|
|
|
h[0] = (h[0] & (r_-1)) + nest_displacement_[0];
|
|
|
|
h[1] = (h[1] & (r_-1)) + nest_displacement_[1];
|
|
|
|
h[2] = (h[2] & (r_-1)) + nest_displacement_[2];
|
|
|
|
assert((h[0]) < g_.size());
|
|
|
|
assert((h[1]) < g_.size());
|
|
|
|
assert((h[2]) < g_.size());
|
|
|
|
uint8_t nest = threebit_mod3[g_[h[0]] + g_[h[1]] + g_[h[2]]];
|
|
|
|
uint32_t vertex = h[nest];
|
|
|
|
return vertex;
|
|
|
|
}
|
|
|
|
|
2011-05-23 21:01:08 +03:00
|
|
|
template <class SeededHashFcn, class Key>
|
2011-06-14 09:38:23 +03:00
|
|
|
uint32_t MPHIndex::perfect_hash(const Key& key) const {
|
2012-03-19 08:10:42 +02:00
|
|
|
if (!g_.size()) return 0;
|
2012-03-20 16:47:55 +02:00
|
|
|
h128 h = SeededHashFcn().hash128(key, hash_seed_[0]);
|
2012-04-22 03:50:14 +03:00
|
|
|
h[0] = (h[0] % r_) + nest_displacement_[0];
|
|
|
|
h[1] = (h[1] % r_) + nest_displacement_[1];
|
|
|
|
h[2] = (h[2] % r_) + nest_displacement_[2];
|
2012-03-19 08:10:42 +02:00
|
|
|
assert((h[0]) < g_.size());
|
|
|
|
assert((h[1]) < g_.size());
|
|
|
|
assert((h[2]) < g_.size());
|
2012-06-03 09:13:06 +03:00
|
|
|
uint8_t nest = threebit_mod3[g_[h[0]] + g_[h[1]] + g_[h[2]]];
|
2012-03-14 09:51:55 +02:00
|
|
|
uint32_t vertex = h[nest];
|
2011-06-14 09:38:23 +03:00
|
|
|
return vertex;
|
|
|
|
}
|
2012-06-03 09:13:06 +03:00
|
|
|
|
2011-06-14 09:38:23 +03:00
|
|
|
template <class SeededHashFcn, class Key>
|
|
|
|
uint32_t MPHIndex::minimal_perfect_hash(const Key& key) const {
|
|
|
|
return Rank(perfect_hash<SeededHashFcn, Key>(key));
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class SeededHashFcn, class Key>
|
|
|
|
uint32_t MPHIndex::index(const Key& key) const {
|
|
|
|
return minimal_perfect_hash<SeededHashFcn, Key>(key);
|
2011-05-23 21:01:08 +03:00
|
|
|
}
|
|
|
|
|
2011-11-05 19:15:11 +02:00
|
|
|
// Simple wrapper around MPHIndex to simplify calling code. Please refer to the
|
|
|
|
// MPHIndex class for documentation.
|
2012-03-12 06:43:06 +02:00
|
|
|
template <class Key, class HashFcn = typename seeded_hash<std::hash<Key>>::hash_function>
|
2011-05-23 21:01:08 +03:00
|
|
|
class SimpleMPHIndex : public MPHIndex {
|
|
|
|
public:
|
2012-06-03 09:13:06 +03:00
|
|
|
SimpleMPHIndex(bool advanced_usage = false) : MPHIndex(advanced_usage) {}
|
2011-05-23 21:01:08 +03:00
|
|
|
template <class ForwardIterator>
|
2012-03-12 04:21:18 +02:00
|
|
|
bool Reset(ForwardIterator begin, ForwardIterator end, uint32_t size) {
|
|
|
|
return MPHIndex::Reset<HashFcn>(begin, end, size);
|
2011-05-23 21:01:08 +03:00
|
|
|
}
|
2011-06-14 08:24:40 +03:00
|
|
|
uint32_t index(const Key& key) const { return MPHIndex::index<HashFcn>(key); }
|
2011-05-23 21:01:08 +03:00
|
|
|
};
|
|
|
|
|
2012-06-03 09:13:06 +03:00
|
|
|
// The parameters minimal and square trade memory usage for evaluation speed.
|
|
|
|
// Minimal decreases speed and memory usage, and square does the opposite.
|
|
|
|
// Using minimal=true and square=false is the same as SimpleMPHIndex.
|
|
|
|
template <bool minimal, bool square, class Key, class HashFcn>
|
|
|
|
struct FlexibleMPHIndex {};
|
|
|
|
|
|
|
|
template <class Key, class HashFcn>
|
|
|
|
struct FlexibleMPHIndex<true, false, Key, HashFcn>
|
|
|
|
: public SimpleMPHIndex<Key, HashFcn> {
|
|
|
|
FlexibleMPHIndex() : SimpleMPHIndex<Key, HashFcn>(false) {}
|
|
|
|
uint32_t index(const Key& key) const {
|
|
|
|
return MPHIndex::minimal_perfect_hash<HashFcn>(key); }
|
|
|
|
uint32_t size() const { return MPHIndex::minimal_perfect_hash_size(); }
|
|
|
|
};
|
|
|
|
template <class Key, class HashFcn>
|
|
|
|
struct FlexibleMPHIndex<false, true, Key, HashFcn>
|
|
|
|
: public SimpleMPHIndex<Key, HashFcn> {
|
|
|
|
FlexibleMPHIndex() : SimpleMPHIndex<Key, HashFcn>(true) {}
|
|
|
|
uint32_t index(const Key& key) const {
|
|
|
|
return MPHIndex::perfect_square<HashFcn>(key); }
|
|
|
|
uint32_t size() const { return MPHIndex::perfect_hash_size(); }
|
|
|
|
};
|
|
|
|
template <class Key, class HashFcn>
|
|
|
|
struct FlexibleMPHIndex<false, false, Key, HashFcn>
|
|
|
|
: public SimpleMPHIndex<Key, HashFcn> {
|
|
|
|
FlexibleMPHIndex() : SimpleMPHIndex<Key, HashFcn>(false) {}
|
|
|
|
uint32_t index(const Key& key) const {
|
|
|
|
return MPHIndex::index<HashFcn>(key); }
|
|
|
|
uint32_t size() const { return MPHIndex::perfect_hash_size(); }
|
|
|
|
};
|
|
|
|
// From a trade-off perspective this case does not make much sense.
|
|
|
|
// template <class Key, class HashFcn>
|
|
|
|
// class FlexibleMPHIndex<true, true, Key, HashFcn>
|
|
|
|
|
2011-05-23 21:01:08 +03:00
|
|
|
} // namespace cxxmph
|
|
|
|
|
|
|
|
#endif // __CXXMPH_MPH_INDEX_H__
|