int main() { string s; HashTable ht; HashTable::iterator it = ht.begin(); ht.Add("pumpururum"); ht.Add("12345"); ht.Add("80931283"); ht.Add("uieiuf"); cout << ht.Size() << endl; system("pause"); return 0; }
HashTable(const HashTable& hash_table) : hasher(), n(0), table(*(new table_type(hash_table.Size()))) { for (hash_iterator_type it = hash_table.begin(); it != hash_table.end(); ++it) Add(*it); }