代码拉取完成,页面将自动刷新
// Time: O(1)
// Space: O(n)
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 (used_.count(val)) {
return false;
}
set_.emplace_back(val);
used_[val] = set_.size() - 1;
return true;
}
/** Removes a value from the set. Returns true if the set contained the specified element. */
bool remove(int val) {
if (!used_.count(val)) {
return false;
}
used_[set_.back()] = used_[val];
swap(set_[used_[val]], set_.back());
used_.erase(val);
set_.pop_back();
return true;
}
/** Get a random element from the set. */
int getRandom() {
return set_[rand() % set_.size()];
}
private:
vector<int> set_;
unordered_map<int, int> used_;
};
/**
* Your RandomizedSet object will be instantiated and called as such:
* RandomizedSet obj = new RandomizedSet();
* bool param_1 = obj.insert(val);
* bool param_2 = obj.remove(val);
* int param_3 = obj.getRandom();
*/
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。