Day3 设计哈希集合
摘要:
class MyHashSet { private: vector<list<int>> data; static const int base =769; static int hash(int key){ return key%base; } public: MyHashSet(): data( 阅读全文
posted @ 2024-07-15 21:32 bihu3637 阅读(4) 评论(0) 推荐(0) 编辑