solution.md 6.5 KB
Newer Older
每日一练社区's avatar
每日一练社区 已提交
1
# O(1) 时间插入、删除和获取随机元素
F
fix bug  
feilong 已提交
2

每日一练社区's avatar
每日一练社区 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
<p>实现<code>RandomizedSet</code> 类:</p>

<div class="original__bRMd">
<div>
<ul>
	<li><code>RandomizedSet()</code> 初始化 <code>RandomizedSet</code> 对象</li>
	<li><code>bool insert(int val)</code> 当元素 <code>val</code> 不存在时,向集合中插入该项,并返回 <code>true</code> ;否则,返回 <code>false</code></li>
	<li><code>bool remove(int val)</code> 当元素 <code>val</code> 存在时,从集合中移除该项,并返回 <code>true</code> ;否则,返回 <code>false</code></li>
	<li><code>int getRandom()</code> 随机返回现有集合中的一项(测试用例保证调用此方法时集合中至少存在一个元素)。每个元素应该有 <strong>相同的概率</strong> 被返回。</li>
</ul>

<p>你必须实现类的所有函数,并满足每个函数的 <strong>平均</strong> 时间复杂度为 <code>O(1)</code></p>

<p>&nbsp;</p>

<p><strong>示例:</strong></p>

<pre>
<strong>输入</strong>
["RandomizedSet", "insert", "remove", "insert", "getRandom", "remove", "insert", "getRandom"]
[[], [1], [2], [2], [], [1], [2], []]
<strong>输出</strong>
[null, true, false, true, 2, true, false, 2]

<strong>解释</strong>
RandomizedSet randomizedSet = new RandomizedSet();
randomizedSet.insert(1); // 向集合中插入 1 。返回 true 表示 1 被成功地插入。
randomizedSet.remove(2); // 返回 false ,表示集合中不存在 2 。
randomizedSet.insert(2); // 向集合中插入 2 。返回 true 。集合现在包含 [1,2] 。
randomizedSet.getRandom(); // getRandom 应随机返回 1 或 2 。
randomizedSet.remove(1); // 从集合中移除 1 ,返回 true 。集合现在包含 [2] 。
randomizedSet.insert(2); // 2 已在集合中,所以返回 false 。
randomizedSet.getRandom(); // 由于 2 是集合中唯一的数字,getRandom 总是返回 2 。
</pre>

<p>&nbsp;</p>

<p><strong>提示:</strong></p>

<ul>
	<li><code>-2<sup>31</sup> &lt;= val &lt;= 2<sup>31</sup> - 1</code></li>
	<li>最多调用 <code>insert</code><code>remove</code><code>getRandom</code> 函数 <code>2 *&nbsp;</code><code>10<sup>5</sup></code></li>
	<li>在调用 <code>getRandom</code> 方法时,数据结构中 <strong>至少存在一个</strong> 元素。</li>
</ul>
</div>
</div>

每日一练社区's avatar
每日一练社区 已提交
50
<p>以下<span style="color:red">错误</span>的选项是?</p>
F
fix bug  
feilong 已提交
51

每日一练社区's avatar
每日一练社区 已提交
52
## aop
F
fix bug  
feilong 已提交
53

每日一练社区's avatar
每日一练社区 已提交
54
### before
F
fix bug  
feilong 已提交
55

每日一练社区's avatar
每日一练社区 已提交
56 57 58 59 60 61
```cpp
#include <bits/stdc++.h>
using namespace std;

```
### after
F
fix bug  
feilong 已提交
62

每日一练社区's avatar
每日一练社区 已提交
63 64 65 66 67
```cpp

```

## 答案
F
fix bug  
feilong 已提交
68

每日一练社区's avatar
每日一练社区 已提交
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
```cpp
class RandomizedSet
{
    unordered_map<int, int> dict;
    vector<int> list;

public:
    /** Initialize your data structure here. */
    RandomizedSet()
    {
        srand(time(0));
    }

    /** Inserts a value to the set. Returns true if the set did not already contain the specified element. */
    bool insert(int val)
    {
        if (dict.find(val) != dict.end())
            return false;
        list.push_back(val);
        dict[val] = list.size();
        return true;
    }

    /** Removes a value from the set. Returns true if the set contained the specified element. */
    bool remove(int val)
    {
        if (dict.find(val) == dict.end())
            return false;
        dict[list.back()] = dict[val];
        swap(list.back(), list[dict[val]]);
        list.pop_back();
        dict.erase(val);
        return true;
    }

    /** Get a random element from the set. */
    int getRandom()
    {
        int pos = list.empty() ? 0 : rand() % list.size();
        return list[pos];
    }
};
```
## 选项

F
fix bug  
feilong 已提交
114

每日一练社区's avatar
每日一练社区 已提交
115
### A
F
fix bug  
feilong 已提交
116

每日一练社区's avatar
每日一练社区 已提交
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
```cpp
class RandomizedSet
{
public:
    /** Initialize your data structure here. */
    RandomizedSet()
    {
    }

    /** Inserts a value to the set. Returns true if the set did not already contain the specified element. */
    bool insert(int val)
    {
        if (mMap.count(val) > 0)
            return false;

        mData.push_back(val);
        mMap[val] = mData.size() - 1;
        return true;
    }

    /** Removes a value from the set. Returns true if the set contained the specified element. */
    bool remove(int val)
    {

        if (mMap.count(val) > 0)
        {
            int last_num = mData.back();
            int val_index = mMap[val];
            mData[val_index] = last_num;
            mMap[last_num] = val_index;

            mData.pop_back();
            mMap.erase(val);

            return true;
        }

        return false;
    }

    /** Get a random element from the set. */
    int getRandom()
    {
        int index = rand() % mData.size();
        return mData[index];
    }

private:
    vector<int> mData;
    unordered_map<int, int> mMap;
};
```

### B
F
fix bug  
feilong 已提交
171

每日一练社区's avatar
每日一练社区 已提交
172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
```cpp
class RandomizedSet
{
public:
    unordered_set<int> ust;

    /** Initialize your data structure here. */
    RandomizedSet()
    {
    }

    /** Inserts a value to the set. Returns true if the set did not already contain the specified element. */
    bool insert(int val)
    {
        if (ust.find(val) != ust.end())
            return false;
        ust.insert(val);
        return true;
    }

    /** Removes a value from the set. Returns true if the set contained the specified element. */
    bool remove(int val)
    {
        if (ust.find(val) == ust.end())
            return false;
        ust.erase(val);
        return true;
    }

    /** Get a random element from the set. */
    int getRandom()
    {
        int ind = rand() % ust.size();
        auto it = ust.begin();
        for (int i = 0; i < ind; i++)
        {
            it++;
        }
        return *it;
    }
};
```

### C
F
fix bug  
feilong 已提交
216

每日一练社区's avatar
每日一练社区 已提交
217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263
```cpp
class RandomizedSet
{
public:
    vector<int> nums;
    unordered_map<int, int> nums_inds;
    /** Initialize your data structure here. */
    RandomizedSet()
    {
    }

    /** Inserts a value to the set. Returns true if the set did not already contain the specified element. */
    bool insert(int val)
    {
        if (nums_inds.count(val) != 0)
            return false;
        nums.push_back(val);
        nums_inds[val] = nums.size() - 1;
        return true;
    }

    /** Removes a value from the set. Returns true if the set contained the specified element. */
    bool remove(int val)
    {
        if (nums_inds.count(val) == 0)
            return false;

        int last = nums.back();
        int ind = nums_inds[val];

        nums[ind] = last;
        nums_inds[last] = ind;

        nums.pop_back();
        nums_inds.erase(val);
        return true;
    }

    /** Get a random element from the set. */
    int getRandom()
    {
        int ind = rand() % nums.size();
        return nums[ind];
    }
};

```