ht1(5);
ht1.Insert(27,3);
ht1.Insert(57,9);
ht1.Insert(83,18);
ht1.Insert(120,43);
ht1.Insert(227,83);
ht1.Print();
cout << endl;
ht1.Delete(27);
ht1.Delete(227);
ht1.Print();
cout << ht1.Find(130) << endl;
system("pause");
return 0;
}哈希表(开链法)
原文:http://www.cnblogs.com/yuanshuang/p/5409248.html