1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-11 02:58:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/基于时间的键值存储 [time-based-key-value-store].html

42 lines
2.2 KiB
HTML
Raw Normal View History

2022-03-27 20:46:41 +08:00
<p>设计一个基于时间的键值数据结构,该结构可以在不同时间戳存储对应同一个键的多个值,并针对特定时间戳检索键对应的值。</p>
<p>实现 <code>TimeMap</code> 类:</p>
<ul>
<li><code>TimeMap()</code> 初始化数据结构对象</li>
2023-12-09 18:42:21 +08:00
<li><code>void set(String key, String value, int timestamp)</code> 存储给定时间戳&nbsp;<code>timestamp</code>&nbsp;时的键&nbsp;<code>key</code>&nbsp;和值&nbsp;<code>value</code></li>
<li><code>String get(String key, int timestamp)</code>&nbsp;返回一个值,该值在之前调用了 <code>set</code>,其中&nbsp;<code>timestamp_prev &lt;= timestamp</code>&nbsp;。如果有多个这样的值,它将返回与最大 &nbsp;<code>timestamp_prev</code>&nbsp;关联的值。如果没有值,则返回空字符串(<code>""</code>)。</li>
2022-03-27 20:46:41 +08:00
</ul>
2023-12-09 18:42:21 +08:00
&nbsp;
2022-03-27 20:46:41 +08:00
2023-12-09 18:42:21 +08:00
<p><strong>示例 1</strong></p>
2022-03-27 20:46:41 +08:00
<pre>
<strong>输入:</strong>
["TimeMap", "set", "get", "get", "set", "get", "get"]
[[], ["foo", "bar", 1], ["foo", 1], ["foo", 3], ["foo", "bar2", 4], ["foo", 4], ["foo", 5]]
<strong>输出:</strong>
[null, null, "bar", "bar", null, "bar2", "bar2"]
<strong>解释:</strong>
TimeMap timeMap = new TimeMap();
2023-12-09 18:42:21 +08:00
timeMap.set("foo", "bar", 1); // 存储键 "foo" 和值 "bar" ,时间戳 timestamp = 1 &nbsp;
2022-03-27 20:46:41 +08:00
timeMap.get("foo", 1); // 返回 "bar"
timeMap.get("foo", 3); // 返回 "bar", 因为在时间戳 3 和时间戳 2 处没有对应 "foo" 的值,所以唯一的值位于时间戳 1 处(即 "bar"
2023-12-09 18:42:21 +08:00
timeMap.set("foo", "bar2", 4); // 存储键 "foo" 和值 "bar2" ,时间戳 timestamp = 4&nbsp;
2022-03-27 20:46:41 +08:00
timeMap.get("foo", 4); // 返回 "bar2"
timeMap.get("foo", 5); // 返回 "bar2"
</pre>
2023-12-09 18:42:21 +08:00
<p>&nbsp;</p>
2022-03-27 20:46:41 +08:00
<p><strong>提示:</strong></p>
<ul>
2023-12-09 18:42:21 +08:00
<li><code>1 &lt;= key.length, value.length &lt;= 100</code></li>
2022-03-27 20:46:41 +08:00
<li><code>key</code><code>value</code> 由小写英文字母和数字组成</li>
2023-12-09 18:42:21 +08:00
<li><code>1 &lt;= timestamp &lt;= 10<sup>7</sup></code></li>
2022-03-27 20:46:41 +08:00
<li><code>set</code> 操作中的时间戳 <code>timestamp</code> 都是严格递增的</li>
2023-12-09 18:42:21 +08:00
<li>最多调用&nbsp;<code>set</code><code>get</code> 操作 <code>2 * 10<sup>5</sup></code></li>
2022-03-27 20:46:41 +08:00
</ul>