摘要: const int DefaultSize = 100;enum KindofStatus {Active, Empty, Deleted};template<class E, class K>class HashTable { public: HashTable(int d, int sz = DefaultSize); ~HashTable() {delete []ht_; delete []info;} HashTable<E, K>& operator = (const HashTable<E, K>& rhs); bool Sear 阅读全文
posted @ 2009-02-20 15:02 小 楼 一 夜 听 春 雨 阅读(546) 评论(0) 推荐(0)