Rogue Wave banner
Previous fileTop of DocumentContentsIndex pageNext file
Essential Tools Module Reference Guide
Rogue Wave web site:  Home Page  |  Main Documentation Page

RWHashTable

Module:  Essential Tools Module   Group:  RWCollectable Classes


RWHashTableRWCollectionRWCollectable

Local Index

Members

Synopsis

#include <rw/hashtab.h>
RWHashTable h ;

Description

This class is a simple hash table for objects inheriting from RWCollectable. It uses chaining (as implemented by class RWSlistCollectables) to resolve hash collisions. Duplicate objects are allowed. An object stored by RWHashTable must inherit from the abstract base class RWCollectable, with suitable definition for virtual functions hash() and isEqual() (see class RWCollectable).

To find an object that matches a key, the key's virtual function hash() is first called to determine in which bucket the object occurs. The bucket is then searched linearly by calling the virtual function isEqual() for each candidate, with the key as the argument. The first object to return true is the returned object.

The initial number of buckets in the table is set by the constructor. There is a default value. If the number of items in the collection greatly exceeds the number of buckets then efficiency will sag because each bucket must be searched linearly. The number of buckets can be changed by calling member function resize(). This will require that all objects be rehashed.

The iterator for this class is RWHashTableIterator.

Persistence

Polymorphic

Example

Program output:

Public Constructors

RWHashTable(size_t N = RWCollection::DEFAULT_CAPACITY);
RWHashTable(const RWHashTable& t);

Public Operators

void
operator=(const RWHashTable& t);
bool 
operator==(const RWHashTable& t) const;
bool 
operator<=(const RWHashTable& t) const;
bool 
operator!=(const RWHashTable&) const;

Member Functions

virtual void
apply(RWapplyCollectable ap, void*);
virtual RWspace
binaryStoreSize() const;
virtual void
clear();
virtual void
clearAndDestroy();
virtual int
compareTo(const RWCollectable*) const;
virtual bool
contains(const RWCollectable*) const;
virtual size_t
entries() const;
virtual RWCollectable*
find(const RWCollectable*) const;
virtual unsigned
hash() const;
virtual RWCollectable*
insert(RWCollectable* a);
virtual RWClassID
isA() const;
virtual bool
isEmpty() const;
virtual bool
isEqual(const RWCollectable*) const;
virtual RWConstIterator*
newConstIterator();
virtual RWIterator*
newIterator();
virtual RWCollectable*
newSpecies() const;
virtual size_t
occurrencesOf(const RWCollectable*) const;
virtual RWCollectable*
remove(const RWCollectable*);
virtual void
removeAndDestroy(const RWCollectable*); 
virtual void
resize(size_t n = 0);
virtual void
restoreGuts(RWvistream&);
virtual void
restoreGuts(RWFile&);
virtual void
saveGuts(RWvostream&) const;
virtual void
saveGuts(RWFile&) const;
RWStringID
stringID();


Previous fileTop of DocumentContentsIndex pageNext file

© Copyright Rogue Wave Software, Inc. All Rights Reserved.
Rogue Wave and SourcePro are registered trademarks of Rogue Wave Software, Inc. in the United States and other countries. All other trademarks are the property of their respective owners.
Contact Rogue Wave about documentation or support issues.