自己写一个hash模版
template <class key_type,class value_type>class hash{ ...public: Status add(const key_type& key,const value_type& value); Status erase(const key_type& key); value_type* find(const key_type& key); value_type& operator [] (const key_type& key); ...}大概就这个结构。