|
Open Graph Drawing Framework |
v. 2023.09 (Elderberry)
|
|
|
Go to the documentation of this file.
92 template<
class I,
class E,
class H = DefHashFunc<I>>
104 explicit HashArray(
const E& defaultValue,
const H& hashFunc = H())
124 return pElement->
info();
136 return pElement->
info();
HashArray(const E &defaultValue, const H &hashFunc=H())
Creates a hashing array with default value defaultValue.
The namespace for all OGDF objects.
HashConstIterator< K, I, H > begin() const
Returns an hash iterator to the first element in the list of all elements.
HashElement< K, I > * fastInsert(const K &key, const I &info)
Inserts a new element with key key and information info into the hash table.
int empty() const
Returns if any indices are defined (= if the hash table is empty)
bool isDefined(const I &i) const
Returns true iff index i is defined.
Declaration of classes used for hashing.
Hashing< K, I, H > & operator=(const Hashing< K, I, H > &hashing)=default
Assignment operator.
Hashing with chaining and table doubling.
void clear()
Undefines all indices.
HashArray()
Creates a hashing array; the default value is the default value of the element type.
HashConstIterator< I, E, H > begin() const
Returns an iterator to the first element in the list of all elements.
HashArray(const HashArray< I, E, H > &A)
Copy constructor.
void clear()
Removes all elements from the hash table.
HashArray< I, E, H > & operator=(const HashArray< I, E, H > &A)
Assignment operator.
int size() const
Returns the number of elements in the hash table.
Indexed arrays using hashing for element access.
void del(const K &key)
Removes the element with key key from the hash table (does nothing if no such element).
HashElement< K, I > * lookup(const K &key) const
Returns the hash element with key key in the hash table; returns nullptr if no such element exists.
bool member(const K &key) const
Returns true iff the hash table contains an element with key key.
const E & operator[](const I &i) const
Returns the element with index i.
Iterators for hash tables.
bool empty() const
Returns true iff the table is empty, i.e., contains no elements.
E & operator[](const I &i)
Returns a reference to the element with index i.
int size() const
Returns the number of defined indices (= number of elements in hash table).
Representation of elements in a hash table.
const I & info() const
Returns the information value.
void undefine(const I &i)
Undefines index i.