Open
Graph Drawing
Framework

 v. 2023.09 (Elderberry)
 

Loading...
Searching...
No Matches
ogdf::HashArray< I, E, H > Class Template Reference

Indexed arrays using hashing for element access. More...

#include <ogdf/basic/HashArray.h>

+ Inheritance diagram for ogdf::HashArray< I, E, H >:

Public Types

using const_iterator = HashConstIterator< I, E, H >
 The default value for elements.
 

Public Member Functions

 HashArray ()
 Creates a hashing array; the default value is the default value of the element type.
 
 HashArray (const E &defaultValue, const H &hashFunc=H())
 Creates a hashing array with default value defaultValue.
 
 HashArray (const HashArray< I, E, H > &A)
 Copy constructor.
 
HashConstIterator< I, E, Hbegin () const
 Returns an iterator to the first element in the list of all elements.
 
void clear ()
 Undefines all indices.
 
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.
 
HashArray< I, E, H > & operator= (const HashArray< I, E, H > &A)
 Assignment operator.
 
E & operator[] (const I &i)
 Returns a reference to the element with index i.
 
const E & operator[] (const I &i) const
 Returns the element with index i.
 
int size () const
 Returns the number of defined indices (= number of elements in hash table).
 
void undefine (const I &i)
 Undefines index i.
 

Private Attributes

m_defaultValue
 

Additional Inherited Members

- Private Types inherited from ogdf::Hashing< K, I, H >
using const_iterator = HashConstIterator< K, I, H >
 The type of const-iterators for hash tables.
 
- Private Member Functions inherited from ogdf::Hashing< K, I, H >
 Hashing (const Hashing< K, I, H > &h)=default
 Copy constructor.
 
 Hashing (int minTableSize=256, const H &hashFunc=H())
 Creates a hash table for given initial table size minTableSize.
 
 ~Hashing ()
 Destruction.
 
HashConstIterator< K, I, Hbegin () const
 Returns an hash iterator to the first element in the list of all elements.
 
void clear ()
 Removes all elements from the hash table.
 
void del (const K &key)
 Removes the element with key key from the hash table (does nothing if no such element).
 
bool empty () const
 Returns true iff the table is empty, i.e., contains no 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.
 
HashElement< K, I > * insert (const K &key, const I &info)
 Inserts a new element with key key and information info into the hash table.
 
HashElement< K, I > * insertByNeed (const K &key, const I &info)
 Inserts a new element with key key and information info into the hash table.
 
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.
 
Hashing< K, I, H > & operator= (const Hashing< K, I, H > &hashing)=default
 Assignment operator.
 
int size () const
 Returns the number of elements in the hash table.
 
HashElement< K, I > * firstElement (HashElement< K, I > ***pList) const
 Returns the first element in the list of all elements in the hash table.
 
HashElement< K, I > * nextElement (HashElement< K, I > ***pList, HashElement< K, I > *pElement) const
 Returns the successor of pElement in the list of all elements in the hash table.
 

Detailed Description

template<class I, class E, class H = DefHashFunc<I>>
class ogdf::HashArray< I, E, H >

Indexed arrays using hashing for element access.

Template Parameters
Iis the index type.
Eis the element type.
His the hash function type. Optional; its default uses the class DefHashFunc.

A hashing array can be used like a usual array but has a general index type.

The hashing array is only defined for a subset Idef of the index set (set of all elements of the index type). At construction, this set is empty. Whenever an index is assigned an element, this index is added to Idef. There are also method for testing if an index is defined (is in Idef).

Example

The following code snippet demonstrates how to use a hashing array. First, the example inserts elements into a hashing array simulating a tiny German–English dictionary, then it prints some elements via array access, and finally it iterates over all defined indices and prints the dictionary entries. We use a the const reference Hc, since we want to avoid that array access for undefined indices creates these elements.

HashArray<string,string> H("[undefined]");
H["Hund"] = "dog";
H["Katze"] = "cat";
H["Maus"] = "mouse";
std::cout << "Katze: " << Hc["Katze"] << std::endl;
std::cout << "Hamster: " << Hc["Hamster"] << std::endl;
std::cout << "\nAll elements:" << std::endl;
for(it = Hc.begin(); it.valid(); ++it)
std::cout << it.key() << " -> " << it.info() << std::endl;
Indexed arrays using hashing for element access.
Definition HashArray.h:93
Iterators for hash tables.
Definition Hashing.h:429
bool valid() const
Returns true if the hash iterator points to an element.
Definition Hashing.h:456
const K & key() const
Returns the key of the hash element pointed to.
Definition Hashing.h:459
const I & info() const
Returns the information of the hash element pointed to.
Definition Hashing.h:462
static MultilevelBuilder * getDoubleFactoredZeroAdjustedMerger()

The produced output is as follows:

Definition at line 93 of file HashArray.h.

Member Typedef Documentation

◆ const_iterator

template<class I , class E , class H = DefHashFunc<I>>
using ogdf::HashArray< I, E, H >::const_iterator = HashConstIterator<I, E, H>

The default value for elements.

The type of const-iterators for hash arrays.

Definition at line 98 of file HashArray.h.

Constructor & Destructor Documentation

◆ HashArray() [1/3]

template<class I , class E , class H = DefHashFunc<I>>
ogdf::HashArray< I, E, H >::HashArray ( )
inline

Creates a hashing array; the default value is the default value of the element type.

Definition at line 101 of file HashArray.h.

◆ HashArray() [2/3]

template<class I , class E , class H = DefHashFunc<I>>
ogdf::HashArray< I, E, H >::HashArray ( const E &  defaultValue,
const H hashFunc = H() 
)
inlineexplicit

Creates a hashing array with default value defaultValue.

Definition at line 104 of file HashArray.h.

◆ HashArray() [3/3]

template<class I , class E , class H = DefHashFunc<I>>
ogdf::HashArray< I, E, H >::HashArray ( const HashArray< I, E, H > &  A)
inline

Copy constructor.

Definition at line 108 of file HashArray.h.

Member Function Documentation

◆ begin()

template<class I , class E , class H = DefHashFunc<I>>
HashConstIterator< I, E, H > ogdf::HashArray< I, E, H >::begin ( ) const
inline

Returns an iterator to the first element in the list of all elements.

Definition at line 112 of file HashArray.h.

◆ clear()

template<class I , class E , class H = DefHashFunc<I>>
void ogdf::HashArray< I, E, H >::clear ( )
inline

Undefines all indices.

Definition at line 153 of file HashArray.h.

◆ empty()

template<class I , class E , class H = DefHashFunc<I>>
int ogdf::HashArray< I, E, H >::empty ( ) const
inline

Returns if any indices are defined (= if the hash table is empty)

Definition at line 118 of file HashArray.h.

◆ isDefined()

template<class I , class E , class H = DefHashFunc<I>>
bool ogdf::HashArray< I, E, H >::isDefined ( const I &  i) const
inline

Returns true iff index i is defined.

Definition at line 140 of file HashArray.h.

◆ operator=()

template<class I , class E , class H = DefHashFunc<I>>
HashArray< I, E, H > & ogdf::HashArray< I, E, H >::operator= ( const HashArray< I, E, H > &  A)
inline

Assignment operator.

Definition at line 146 of file HashArray.h.

◆ operator[]() [1/2]

template<class I , class E , class H = DefHashFunc<I>>
E & ogdf::HashArray< I, E, H >::operator[] ( const I &  i)
inline

Returns a reference to the element with index i.

Definition at line 131 of file HashArray.h.

◆ operator[]() [2/2]

template<class I , class E , class H = DefHashFunc<I>>
const E & ogdf::HashArray< I, E, H >::operator[] ( const I &  i) const
inline

Returns the element with index i.

Definition at line 121 of file HashArray.h.

◆ size()

template<class I , class E , class H = DefHashFunc<I>>
int ogdf::HashArray< I, E, H >::size ( ) const
inline

Returns the number of defined indices (= number of elements in hash table).

Definition at line 115 of file HashArray.h.

◆ undefine()

template<class I , class E , class H = DefHashFunc<I>>
void ogdf::HashArray< I, E, H >::undefine ( const I &  i)
inline

Undefines index i.

Definition at line 143 of file HashArray.h.

Member Data Documentation

◆ m_defaultValue

template<class I , class E , class H = DefHashFunc<I>>
E ogdf::HashArray< I, E, H >::m_defaultValue
private

Definition at line 94 of file HashArray.h.


The documentation for this class was generated from the following file: