LeetCode 981.基于时间的键值存储(C++)
创建一个基于时间的键值存储类 TimeMap
,它支持下面两个操作:
1. set(string key, string value, int timestamp)
- 存储键
key
、值value
,以及给定的时间戳timestamp
。
2. get(string key, int timestamp)
- 返回先前调用
set(key, value, timestamp_prev)
所存储的值,其中timestamp_prev <= timestamp
。 - 如果有多个这样的值,则返回对应最大的
timestamp_prev
的那个值。 - 如果没有值,则返回空字符串(
""
)。
示例 1:
输入:inputs = ["TimeMap","set","get","get","set","get","get"], inputs = [[],["foo","bar",1],["foo",1],["foo",3],["foo","bar2",4],["foo",4],["foo",5]] 输出:[null,null,"bar","bar",null,"bar2","bar2"] 解释: TimeMap kv; kv.set("foo", "bar", 1); // 存储键 "foo" 和值 "bar" 以及时间戳 timestamp = 1 kv.get("foo", 1); // 输出 "bar" kv.get("foo", 3); // 输出 "bar" 因为在时间戳 3 和时间戳 2 处没有对应 "foo" 的值,所以唯一的值位于时间戳 1 处(即 "bar") kv.set("foo", "bar2", 4); kv.get("foo", 4); // 输出 "bar2" kv.get("foo", 5); // 输出 "bar2"
示例 2:
输入:inputs = ["TimeMap","set","set","get","get","get","get","get"], inputs = [[],["love","high",10],["love","low",20],["love",5],["love",10],["love",15],["love",20],["love",25]] 输出:[null,null,null,"","high","high","low","low"]
提示:
- 所有的键/值字符串都是小写的。
- 所有的键/值字符串长度都在
[1, 100]
范围内。 - 所有
TimeMap.set
操作中的时间戳timestamps
都是严格递增的。 1 <= timestamp <= 10^7
TimeMap.set
和TimeMap.get
函数在每个测试用例中将(组合)调用总计120000
次。
#include <iostream> #include <vector> #include <tuple> #include <string> #include <numeric> #include <map> using namespace std; //vector<tuple<string, string, int> > vec; //auto iter = back_inserter(vec); //vector<pair<string, map<string, int> > > vec; //auto iter = back_inserter(vec); //multimap<string, map<string, int> > mun; class TimeMap { public: TimeMap(){ ios_base::sync_with_stdio(false); cin.tie(0); } void set(string key, string value, int timestamp) { mun[key].insert(map<int, string>::value_type(timestamp, value));//存储set()函数的参数值 } string get(string key, int timestamp) { auto iter = mun[key].upper_bound(timestamp); /*这里使用了二分法,并且这里必须使用upper_bound(), 因为题中有“如果有多个这样的值,则返回对应最大的timestamp_prev的那个值。”这个条件 iter的位置,恰好是最大值的下一个位置 */ return iter == mun[key].end() ? prev(iter)->second : (iter == mun[key].begin() ? "" : prev(iter)->second); /*这里也可以使用 return iter == mun[key].begin() ? "" : prev(iter)->second; 不过个人认为不好理解*/ /*使用上面这种方法:表示如果在map容器中没有找到不小于timestamp的值,表示map容器中的值都满足题目, 则我们只需要取前一位置的值。 如果找到了,则我们首先需要判断,找到的位置是不是在map的第一个位置,如果在,则表示map中的元素都不满足题目,则输出"" 如果不在,表示iter前一位置的值是满足题目的。 */ } private: map<string, map<int, string> > mun;//存储set()函数的map容器 }; int main() { TimeMap kv; kv.set("foo", "bar", 1); // 存储键 "foo" 和值 "bar" 以及时间戳 timestamp = 1 cout << kv.get("foo", 1) << " "; // 输出 "bar" cout << kv.get("foo", 3) << " "; // 输出 "bar" 因为在时间戳 3 和时间戳 2 处没有对应 "foo" 的值,所以唯一的值位于时间戳 1 处(即 "bar") kv.set("foo", "bar2", 4); cout << kv.get("foo", 4) << " "; // 输出 "bar2" cout << kv.get("foo", 5) << " "; // 输出 "bar2" system("PAUSE"); return 0; }