代码拉取完成,页面将自动刷新
// Time: set: O(1)
// get: O(logn), n is the total number of set
// Space: O(n)
class SnapshotArray {
public:
SnapshotArray(int length) {
}
void set(int index, int val) {
if (!A_.count(index)) {
A_[index].emplace_back(-1, 0);
}
A_[index].emplace_back(snap_id_, val);
}
int snap() {
return snap_id_++;
}
int get(int index, int snap_id) {
if (!A_.count(index)) {
A_[index].emplace_back(-1, 0);
}
const auto& it = prev(upper_bound(A_[index].cbegin(), A_[index].cend(),
make_pair(snap_id + 1, 0)));
return it->second;
}
private:
unordered_map<int, vector<pair<int, int>>> A_;
int snap_id_ = 0;
};
/**
* Your SnapshotArray object will be instantiated and called as such:
* SnapshotArray* obj = new SnapshotArray(length);
* obj->set(index,val);
* int param_2 = obj->snap();
* int param_3 = obj->get(index,snap_id);
*/
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。