leetcode705
Posted AsenYang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode705相关的知识,希望对你有一定的参考价值。
class MyHashSet { public: /** Initialize your data structure here. */ MyHashSet() { } void add(int key) { if(set[key] == 0) set[key]++; } void remove(int key) { if(set[key] > 0) set[key]--; } /** Returns true if this set contains the specified element */ bool contains(int key) { if(set[key] > 0) return true; return false; } private: int set[1000010] = {0}; };
以上是关于leetcode705的主要内容,如果未能解决你的问题,请参考以下文章
[LeetCode&Python] Problem 705. Design HashSet
Leetcode刷题100天—705. 设计哈希集合(集合)—day74
LeetCode 705. Design HashSet (设计哈希集合)