TPIE

2362a60
hash_map.h File Reference

Internal hash map with guaranteed memory requirements. More...

#include <tpie/array.h>
#include <tpie/unused.h>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <tpie/prime.h>
#include <tpie/hash.h>

Go to the source code of this file.

Classes

class  tpie::chaining_hash_table< value_t, hash_t, equal_t, index_t >
 Hash table handling hash collisions by chaining. More...
 
class  tpie::linear_probing_hash_table< value_t, hash_t, equal_t, index_t >
 Hash table handling hash collisions by linear probing. More...
 
class  tpie::hash_map< key_t, data_t, hash_t, equal_t, index_t, table_t >
 Hash map implementation backed by a template parameterized hash table. More...
 
class  tpie::hash_map< key_t, data_t, hash_t, equal_t, index_t, table_t >::iterator
 Non-const iterator type. More...
 
class  tpie::hash_set< key_t, hash_t, equal_t, index_t, table_t >
 Hash set implementation backed by a template parameterized hash table. More...
 
class  tpie::hash_set< key_t, hash_t, equal_t, index_t, table_t >::iterator
 Non-const iterator type. More...
 

Namespaces

 tpie
 pipelining/factory_base.h Base class of pipelining factories
 

Detailed Description

Internal hash map with guaranteed memory requirements.

Definition in file hash_map.h.