1 Star 0 Fork 0

yuhang2__2/LeetCode-Solutions

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
snapshot-array.cpp 1014 Bytes
一键复制 编辑 原始数据 按行查看 历史
kamyu 提交于 6年前 . Create snapshot-array.cpp
// 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);
*/
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yuhang2__2/LeetCode-Solutions.git
git@gitee.com:yuhang2__2/LeetCode-Solutions.git
yuhang2__2
LeetCode-Solutions
LeetCode-Solutions
master

搜索帮助