码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode705

时间:2018-10-01 13:18:54      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:ecif   oid   ++   contain   key   void   false   div   color   

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

标签:ecif   oid   ++   contain   key   void   false   div   color   

原文地址:https://www.cnblogs.com/asenyang/p/9734497.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!