美文网首页
LeetCode 460. LFU 缓存

LeetCode 460. LFU 缓存

作者: 陈陈chen | 来源:发表于2021-10-09 15:04 被阅读0次

1、题目

image.png

2、分析

最麻烦的就是要解决,当容量满的时候,需要删除使用次数最少的那个cache。如果有好几个使用次数都一样,那就淘汰最老的那个数据。

  • 可能有多个key使用的次数一样,所以我们考虑把这些key都放到一个set集合里。
  • 多个key一样的时候,需要淘汰最老的那个数据,因此需要使用链表来处理。

基于以上两个点,我们可以考虑set和有序链表的结合数据结构:LinkedHashSet<>()

这里定义三个hashMap:
HashMap<Integer, Integer> keyToVal; //存k-v映射
HashMap<Integer, Integer> keyToFreq; //存key和使用次数
HashMap<Integer, LinkedHashSet<Integer>> freqMap; //使用次数和keys的映射

3、代码

class LFUCache {
    HashMap<Integer, Integer> keyToVal;
    HashMap<Integer, Integer> keyToFreq;
    HashMap<Integer, LinkedHashSet<Integer>> freqMap;
    int cap;
    int minFreq;
    public LFUCache(int capacity) {
        cap = capacity;
        minFreq = 0;
        keyToVal = new HashMap<>();
        keyToFreq = new HashMap<>();
        freqMap = new HashMap<>();
    }
    
    public int get(int key) {
        if(!keyToVal.containsKey(key)){
            return -1;
        }
        incFreq(key);
        return keyToVal.get(key);
    }
    
    public void put(int key, int value) {
        if(this.cap == 0) return;
        if(keyToVal.containsKey(key)){
            keyToVal.put(key, value);
            incFreq(key);
            return;
        }
        if(this.cap <= keyToVal.size()){
            removeMinFreq();
        }
        keyToVal.put(key, value);
        keyToFreq.put(key, 1);
        freqMap.putIfAbsent(1, new LinkedHashSet<>());
        freqMap.get(1).add(key);
        this.minFreq = 1;
    }

    public void incFreq(int key){
        int freq = keyToFreq.get(key);
        keyToFreq.put(key, freq + 1);
        freqMap.putIfAbsent(freq + 1, new LinkedHashSet<>());
        freqMap.get(freq + 1).add(key);
        freqMap.get(freq).remove(key);
        if(freqMap.get(freq).isEmpty()){
            freqMap.remove(freq);
            if(this.minFreq == freq){
                this.minFreq = freq + 1;
            }
        }
    }

    public void removeMinFreq(){
        LinkedHashSet<Integer> keys = freqMap.get(this.minFreq);
        int delKey = keys.iterator().next();
        keys.remove(delKey);
        if(keys.isEmpty()){
            freqMap.remove(this.minFreq);
        }
        keyToVal.remove(delKey);
        keyToFreq.remove(delKey);
    }
}

/**
 * Your LFUCache object will be instantiated and called as such:
 * LFUCache obj = new LFUCache(capacity);
 * int param_1 = obj.get(key);
 * obj.put(key,value);
 */

相关文章

  • 【设计数据结构】实现一个 LFUCache

    题目描述 这是 LeetCode 上的 「460. LFU 缓存」 ,难度为 「困难」。 Tag : 「链表」、「...

  • LeetCode 460. LFU Cache

    10-10 LeetCode 460. LFU Cache LFU Cache Description Desig...

  • LeetCode 460. LFU 缓存

    1、题目 2、分析 最麻烦的就是要解决,当容量满的时候,需要删除使用次数最少的那个cache。如果有好几个使用次数...

  • LFU

    参考 LeetCode算法题解:LFU CacheLFU Cache 最近最不常用页面置换缓存器 题目要求 设计并...

  • 8.22 - hard - 87

    460. LFU Cache 有点做不动了。。。基本思想是。。。(这题要重看,先休息一会)

  • 460. LFU Cache

    Description Design and implement a data structure for Lea...

  • 缓存算法——LFUCache编码实现(Java版)

    LFU算法(Last Frequently Used) Leetcode : [https://leetcode-...

  • 层层拆解,带你手写 LFU 算法

    读完本文,你不仅学会了算法套路,还可以顺便去 LeetCode 上拿下如下题目: 460.LFU缓存机制[http...

  • lintcode LFU引发的思考

    题目24. LFU Cache LFU是一个著名的缓存算法对于容量为k的缓存,如果缓存已满,并且需要逐出其中的密钥...

  • LFU缓存

    来源:力扣(LeetCode)链接:https://leetcode-cn.com/problems/lfu-ca...

网友评论

      本文标题:LeetCode 460. LFU 缓存

      本文链接:https://www.haomeiwen.com/subject/zvuqoltx.html