All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
DataHashTable< HashItem, Info > Class Template Reference Generic hash table for data objects.Class DataHashTable provides a generic hash table for Data Objects, i.e., a map that maps arguments called HashItems to values called Infos. HashItem and Info types are passed as template arguments. HashItems must provide a comparison operator==(). Furthermore, both the HashItem and Info must be data objects in the sense that the assignment operator is equivalent to a
Detailed Descriptiontemplate<class HashItem, class Info>
|
|
explicit |
default constructor.
Allocates a DataHashTable for maxsize
entries using hashfun
as hash function. If hashsize
> 0, m_hashsize is set to the specified value, otherwise a suitable hash size is computed automatically. Parameter factor
is used for memory management: If more than maxsize
entries are added to the DataHashTable, it will automatically be reMax()ed by a factor of factor
.
hashfun | pointer to hash function. |
maxsize | maximum number of hash elements. |
hashsize | hash size. |
factor | factor for increasing data block. |
Definition at line 266 of file datahashtable.h.
DataHashTable | ( | const DataHashTable< HashItem, Info > & | base | ) |
copy constructor.
Definition at line 298 of file datahashtable.h.
void add | ( | const HashItem & | h, |
const Info & | info | ||
) |
adds a new entry to the hash table.
Adds a new entry consisting of HashItem h
and Info info
to the DataHashTable. No entry with HashItem h
must be in the DataHashTable yet. After completion, info
may be accessed via get() or operator[]() with h
as parameter. The DataHashTable is reMax()ed if it becomes neccessary.
Definition at line 157 of file datahashtable.h.
Referenced by DataHashTable< soplex::NameSet::Name, soplex::DataKey >::reMax().
|
private |
automatically computes a good m_hashsize.
Computes a good m_hashsize as the product of all prime numbers not divisors of the number of elements that are <= the maximum divisor of the number of elemens.
Definition at line 321 of file datahashtable.h.
Referenced by DataHashTable< soplex::NameSet::Name, soplex::DataKey >::DataHashTable(), and DataHashTable< soplex::NameSet::Name, soplex::DataKey >::reMax().
void clear | ( | ) |
remove all entries from DataHashTable.
Definition at line 194 of file datahashtable.h.
Referenced by DataHashTable< soplex::NameSet::Name, soplex::DataKey >::DataHashTable(), and DataHashTable< soplex::NameSet::Name, soplex::DataKey >::reMax().
const Info* get | ( | const HashItem & | h | ) | const |
returns const pointer to Info of HashItem h
or 0, if item is not found.
Returns a pointer to Info component of hash element h
or a zero pointer if element h
is not in the table.
Definition at line 131 of file datahashtable.h.
bool has | ( | const HashItem & | h | ) | const |
Is item h
present in DataHashTable?
Definition at line 121 of file datahashtable.h.
Referenced by DataHashTable< soplex::NameSet::Name, soplex::DataKey >::add(), DataHashTable< soplex::NameSet::Name, soplex::DataKey >::isConsistent(), DataHashTable< soplex::NameSet::Name, soplex::DataKey >::operator[](), and DataHashTable< soplex::NameSet::Name, soplex::DataKey >::remove().
|
private |
returns hash index of HashItem h
or -1, if h
is not present.
Using the hash function m_hashfun, the hash value of h
is calculated. Starting with this hash index, every m_hashsize%-th element is compared with h
until h
is found or all elements have been checked.
h | HashItem, for which the hash index should be calculated |
h
or -1, if h
is not a member of the hash table Definition at line 363 of file datahashtable.h.
Referenced by DataHashTable< soplex::NameSet::Name, soplex::DataKey >::get(), DataHashTable< soplex::NameSet::Name, soplex::DataKey >::has(), DataHashTable< soplex::NameSet::Name, soplex::DataKey >::operator[](), and DataHashTable< soplex::NameSet::Name, soplex::DataKey >::remove().
bool isConsistent | ( | ) | const |
checks whether DataHashTable is consistent
Definition at line 226 of file datahashtable.h.
Referenced by DataHashTable< soplex::NameSet::Name, soplex::DataKey >::DataHashTable(), and DataHashTable< soplex::NameSet::Name, soplex::DataKey >::operator=().
DataHashTable& operator= | ( | const DataHashTable< HashItem, Info > & | base | ) |
assignment operator.
Definition at line 284 of file datahashtable.h.
const Info& operator[] | ( | const HashItem & | h | ) | const |
references Info of HashItem h
.
Index operator for accessing the Info associated to HashItem h
. It is required that h
belongs to the DataHashTable, otherwise it core dumps. Methods has() or get() can be used for inquiring wheater h
belongs to the DataHashTable or not.
Definition at line 144 of file datahashtable.h.
void reMax | ( | int | newSize = -1 , |
int | newHashSize = 0 |
||
) |
reset size of the DataHashTable.
Reset the maximum number of elements of a DataHashTable to newSize
. However, if newSize
< m_used, it is resized to m_used only. If newHashSize
< 1, a new hash size is computed automatically. Otherwise, the specified value will be taken.
Definition at line 206 of file datahashtable.h.
Referenced by DataHashTable< soplex::NameSet::Name, soplex::DataKey >::add().
void remove | ( | const HashItem & | h | ) |
remove HashItem h
from the DataHashTable.
Definition at line 185 of file datahashtable.h.
stores all elements of the hash table
Definition at line 104 of file datahashtable.h.
Referenced by DataHashTable< soplex::NameSet::Name, soplex::DataKey >::add(), DataHashTable< soplex::NameSet::Name, soplex::DataKey >::autoHashSize(), DataHashTable< soplex::NameSet::Name, soplex::DataKey >::clear(), DataHashTable< soplex::NameSet::Name, soplex::DataKey >::get(), DataHashTable< soplex::NameSet::Name, soplex::DataKey >::index(), DataHashTable< soplex::NameSet::Name, soplex::DataKey >::isConsistent(), DataHashTable< soplex::NameSet::Name, soplex::DataKey >::operator=(), DataHashTable< soplex::NameSet::Name, soplex::DataKey >::operator[](), DataHashTable< soplex::NameSet::Name, soplex::DataKey >::reMax(), and DataHashTable< soplex::NameSet::Name, soplex::DataKey >::remove().
|
private |
pointer to hash function (mapping: HashItem -> int)
Definition at line 110 of file datahashtable.h.
Referenced by DataHashTable< soplex::NameSet::Name, soplex::DataKey >::add(), and DataHashTable< soplex::NameSet::Name, soplex::DataKey >::operator=().
|
private |
increment added to hash index, if allready used
Definition at line 106 of file datahashtable.h.
Referenced by DataHashTable< soplex::NameSet::Name, soplex::DataKey >::add(), DataHashTable< soplex::NameSet::Name, soplex::DataKey >::DataHashTable(), DataHashTable< soplex::NameSet::Name, soplex::DataKey >::index(), DataHashTable< soplex::NameSet::Name, soplex::DataKey >::operator=(), and DataHashTable< soplex::NameSet::Name, soplex::DataKey >::reMax().
|
private |
memory is reMax()ed by this factor if a new element does't fit
Definition at line 112 of file datahashtable.h.
Referenced by DataHashTable< soplex::NameSet::Name, soplex::DataKey >::add(), DataHashTable< soplex::NameSet::Name, soplex::DataKey >::DataHashTable(), and DataHashTable< soplex::NameSet::Name, soplex::DataKey >::operator=().
|
private |
current number of entries in the hash table
Definition at line 108 of file datahashtable.h.
Referenced by DataHashTable< soplex::NameSet::Name, soplex::DataKey >::add(), DataHashTable< soplex::NameSet::Name, soplex::DataKey >::clear(), DataHashTable< soplex::NameSet::Name, soplex::DataKey >::index(), DataHashTable< soplex::NameSet::Name, soplex::DataKey >::isConsistent(), DataHashTable< soplex::NameSet::Name, soplex::DataKey >::operator=(), DataHashTable< soplex::NameSet::Name, soplex::DataKey >::reMax(), and DataHashTable< soplex::NameSet::Name, soplex::DataKey >::remove().
© 2003-2013 by Zuse Institute Berlin (ZIB), Imprint | Generated on Wed Jan 9 2013 for SoPlex by doxygen |