Functions



TSHashTable


public:

DSTSHashTable (     unsigned int newBuckets=100,     unsigned int newPrimeA=89258459,     unsigned int newPrimeB=252584539 );
Discussion

Create a TSHashTable.

Parameter Descriptions
newBuckets
Specify the number of buckets to be used in the HashTable. The more buckets, the more memory is required; but the faster data access will be on large datasets. You may wish to increase the default for areas involving large quantities of data.
newPrimeA
Specify a large prime number to be used in hashing. You only need to do this if it's important to you to have a different hashing algorithm between two HashTables.
newPrimeB
Specify a large prime number to be used in hashing. You only need to do this if it's important to you to have a different hashing algorithm between two HashTables.

~TSHashTable


public:

~DSTSHashTable (void);
Discussion

Destroy a TSHashTable.

(Last Updated 9/24/2004)