leetcode 705,为什么执行出错呢?

 class MyHashSet {
public:
    /** Initialize your data structure here. */
    MyHashSet() {

    }

    void add(int key) {
        if (v[key] == 0)
            ++v[key];
    }

    void remove(int key) {
        if (v[key] > 0)
            --v[key];
    }

    /** Returns true if this set did not already contain the specified element */
    bool contains(int key) {
        if (v[key] > 0)
            return true;
        return false;
    }

private:

vector<int> v;    
};

/**
 * 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);
 */


慕田峪7331174
浏览 1887回答 2
2回答

泛舟湖上清波郎朗

没明白楼主的描述? /** &nbsp;*&nbsp;Your&nbsp;MyHashSet&nbsp;object&nbsp;will&nbsp;be&nbsp;instantiated&nbsp;and&nbsp;called&nbsp;as&nbsp;such: &nbsp;*&nbsp;MyHashSet&nbsp;obj&nbsp;=&nbsp;new&nbsp;MyHashSet(); &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;*&nbsp;obj.add(key);&nbsp;&nbsp;&nbsp;&nbsp;//你这里的key的定义呢?/////////////////// &nbsp;*&nbsp;obj.remove(key); &nbsp;*&nbsp;bool&nbsp;param_3&nbsp;=&nbsp;obj.contains(key); &nbsp;*/
打开App,查看更多内容
随时随地看视频慕课网APP