【Leetcode_easy】705. Design HashSet
problem
题意:
solution1:
class MyHashSet { public: /** Initialize your data structure here. */ MyHashSet() { data.resize(1000000, 0); } void add(int key) { data[key] = 1; } void remove(int key) { data[key] = 0; } /** Returns true if this set contains the specified element */ bool contains(int key) { //if(data[key]==1) return true; //else return false; return data[key]==1; } vector<int> data; }; /** * Your MyHashSet object will be instantiated and called as such: * MyHashSet* obj = new MyHashSet(); * obj->add(key); * obj->remove(key); * bool param_3 = obj->contains(key); */
solution2:
参考
1. Leetcode_easy_705. Design HashSet;
2. Grandyang;
完
各美其美,美美与共,不和他人作比较,不对他人有期待,不批判他人,不钻牛角尖。
心正意诚,做自己该做的事情,做自己喜欢做的事情,安静做一枚有思想的技术媛。
版权声明,转载请注明出处:https://www.cnblogs.com/happyamyhope/
心正意诚,做自己该做的事情,做自己喜欢做的事情,安静做一枚有思想的技术媛。
版权声明,转载请注明出处:https://www.cnblogs.com/happyamyhope/
浙公网安备 33010602011771号