public:
DSTSHashTable(unsigned int newBuckets=100,unsigned int newPrimeA=89258459,unsigned int newPrimeB=252584539);
Create a TSHashTable.
Name Description 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.
public:
~DSTSHashTable();
Destroy a TSHashTable.
Generated with HeaderDoc - © 2000 Apple Computer, Inc. (Last Updated 9/29/2003)