forked from MaskRay/LeetCode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
all-oone-data-structure.cc
63 lines (58 loc) · 1.59 KB
/
all-oone-data-structure.cc
1
2
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// All O`one Data Structure
class AllOne {
struct Bucket { int v; unordered_set<string> ks; };
unordered_map<string, list<Bucket>::iterator> a;
list<Bucket> b;
public:
/** Initialize your data structure here. */
AllOne() {
b.push_front({0, {}});
}
/** Inserts a new key <Key> with value 1. Or increments an existing key by 1. */
void inc(string key) {
if (! a.count(key)) {
a[key] = b.begin();
b.begin()->ks.insert(key);
}
auto y = a[key], x = y++;
if (y == b.end() || x->v+1 < y->v)
y = b.insert(y, {x->v+1, {}});
a[key] = y;
y->ks.insert(key);
x->ks.erase(key);
if (x->ks.empty() && x->v)
b.erase(x);
}
/** Decrements an existing key by 1. If Key's value is 1, remove it from the data structure. */
void dec(string key) {
if (a.count(key)) {
auto y = a[key], x = y--;
if (x->v > 1) {
if (x == b.begin() || y->v < x->v-1)
y = b.insert(x, {x->v-1, {}});
a[key] = y;
y->ks.insert(key);
} else
a.erase(key);
x->ks.erase(key);
if (x->ks.empty())
b.erase(x);
}
}
/** Returns one of the keys with maximal value. */
string getMaxKey() {
return b.size() == 1 ? "" : *b.rbegin()->ks.begin();
}
/** Returns one of the keys with Minimal value. */
string getMinKey() {
return b.size() == 1 ? "" : *(++b.begin())->ks.begin();
}
};
/**
* Your AllOne object will be instantiated and called as such:
* AllOne obj = new AllOne();
* obj.inc(key);
* obj.dec(key);
* string param_3 = obj.getMaxKey();
* string param_4 = obj.getMinKey();
*/