DSTSHashTable



Member Functions

TSHashTable

	public:

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

Create a TSHashTable.

Parameters

NameDescription
newBucketsSpecify 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.
newPrimeASpecify 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.
newPrimeBSpecify 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();

Destroy a TSHashTable.


Generated with HeaderDoc - © 2000 Apple Computer, Inc. — (Last Updated 9/29/2003)