《LeetCode之每日一题》:207.键值映射
Posted 是七喜呀!
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了《LeetCode之每日一题》:207.键值映射相关的知识,希望对你有一定的参考价值。
题目链接: 键值映射
有关题目
实现一个 MapSum 类,支持两个方法,insert 和 sum:
①MapSum() 初始化 MapSum 对象
②void insert(String key, int val) 插入 key-val 键值对,字符串表示键 key ,整数表示值 val 。
如果键 key 已经存在,那么原来的键值对将被替代成新的键值对。
③int sum(string prefix) 返回所有以该前缀 prefix 开头的键 key 的值的总和。
示例:
输入:
["MapSum", "insert", "sum", "insert", "sum"]
[[], ["apple", 3], ["ap"], ["app", 2], ["ap"]]
输出:
[null, null, 3, null, 5]
解释:
MapSum mapSum = new MapSum();
mapSum.insert("apple", 3);
mapSum.sum("ap"); // return 3 (apple = 3)
mapSum.insert("app", 2);
mapSum.sum("ap"); // return 5 (apple + app = 3 + 2 = 5)
提示:
1 <= key.length, prefix.length <= 50
key 和 prefix 仅由小写英文字母组成
1 <= val <= 1000
最多调用 50 次 insert 和 sum
题解
法一:扫描 + 额外空间
参考官方题解
class MapSum {
public:
MapSum() {
}
void insert(string key, int val) {
cnt[key] = val;
}
int sum(string prefix) {
int res = 0;
for (auto &[key, val] : cnt)
{
//substr(pos, pos + count) 从pos开始查找count长度的子串--左开右闭
if (key.substr(0, prefix.size()) == prefix)
{
res += val;
}
}
return res;
}
//哈希表存储所有key-val对
private:
unordered_map<string, int> cnt;
};
/**
* Your MapSum object will be instantiated and called as such:
* MapSum* obj = new MapSum();
* obj->insert(key,val);
* int param_2 = obj->sum(prefix);
*/
法二:所有可能的前缀哈希映射
参考官方题解
class MapSum {
public:
MapSum() {
}
void insert(string key, int val) {
int delta = val;
//该键存在, 更新前缀的值我们需要拿到差值delta
if (mp.count(key))
{
delta -= mp[key];
}
mp[key] = val;
//哈希表存储所有可能前缀的值
for (int i = 1; i <= key.size(); i++)
{
prefixmap[key.substr(0, i)] += delta;
}
}
int sum(string prefix) {
return prefixmap[prefix];
}
private:
unordered_map<string, int> mp;
unordered_map<string, int> prefixmap;
};
/**
* Your MapSum object will be instantiated and called as such:
* MapSum* obj = new MapSum();
* obj->insert(key,val);
* int param_2 = obj->sum(prefix);
*/
以上是关于《LeetCode之每日一题》:207.键值映射的主要内容,如果未能解决你的问题,请参考以下文章