LeetCode LFU Cache
原题链接在这里:https://leetcode.com/problems/lfu-cache/
题目:
Design and implement a data structure for Least Frequently Used (LFU) cache. It should support the following operations: getand put.
get(key) - Get the value (will always be positive) of the key if the key exists in the cache, otherwise return -1.put(key, value) - Set or insert the value if the key is not already present. When the cache reaches its capacity, it should invalidate the least frequently used item before inserting a new item. For the purpose of this problem, when there is a tie (i.e., two or more keys that have the same frequency), the least recently used key would be evicted.
Follow up:
Could you do both operations in O(1) time complexity?
Example:
LFUCache cache = new LFUCache( 2 /* capacity */ ); cache.put(1, 1);
cache.put(2, 2);
cache.get(1); // returns 1
cache.put(3, 3); // evicts key 2
cache.get(2); // returns -1 (not found)
cache.get(3); // returns 3.
cache.put(4, 4); // evicts key 1.
cache.get(1); // returns -1 (not found)
cache.get(3); // returns 3
cache.get(4); // returns 4
题解:
去掉least frequently used element, 就需要一个min来maintain到目前最不被利用的元素的利用次数.
用三个map, 一个是维护正常key value pair的HashMap<Integer, Integer> keyVals.
第二个是维护每个key的使用次数.
第三个是维护每个count下对应的key set.
当put第一个元素时, min=1, 对应更新keyVals, keyCounts 和 countKeySets.
get时, key的count要加一, 对应调整keyCounts 和 countKeySets. 若这个key的count恰巧是最少使用次数的最后一个值,那么最少使用次数min++.
在达到capacity后在加新key时利用min来找到least frequently used element, 并对应调整keyVals, keyCounts 和 countKeySets.
Note: corner case capacity <= 0.
countToKeys need LinkedHashSet, because when there is even, evict the oldest one.
Time Complexity: get, O(1). put, O(1).
Space: O(n).
AC Java:
 public class LFUCache {
     HashMap<Integer, Integer> keyVals;
     HashMap<Integer, Integer> keyCounts;
     HashMap<Integer, LinkedHashSet<Integer>> countKeySets;
     int capacity;
     int min;
     public LFUCache(int capacity) {
         this.capacity = capacity;
         this.min = -1;
         keyVals = new HashMap<Integer, Integer>();
         keyCounts = new HashMap<Integer, Integer>();
         countKeySets = new HashMap<Integer, LinkedHashSet<Integer>>();
         countKeySets.put(1, new LinkedHashSet<Integer>());
     }
     public int get(int key) {
         if(!keyVals.containsKey(key)){
             return -1;
         }
         int count = keyCounts.get(key);
         keyCounts.put(key, count+1);
         countKeySets.get(count).remove(key);
         if(count == min && countKeySets.get(count).size() == 0){
             min++;
         }
         if(!countKeySets.containsKey(count+1)){
             countKeySets.put(count+1, new LinkedHashSet<Integer>());
         }
         countKeySets.get(count+1).add(key);
         return keyVals.get(key);
     }
     public void put(int key, int value) {
         if(capacity <= 0){
             return;
         }
         if(keyVals.containsKey(key)){
             keyVals.put(key, value);
             get(key);
             return;
         }
         if(keyVals.size() >= capacity){
             int leastFreq = countKeySets.get(min).iterator().next();
             keyVals.remove(leastFreq);
             keyCounts.remove(leastFreq);
             countKeySets.get(min).remove(leastFreq);
         }
         keyVals.put(key, value);
         keyCounts.put(key, 1);
         countKeySets.get(1).add(key);
         min = 1;
     }
 }
 /**
  * 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);
  */
类似LRU Cache, All O`one Data Structure.
LeetCode LFU Cache的更多相关文章
- [LeetCode] LFU Cache 最近最不常用页面置换缓存器
		Design and implement a data structure for Least Frequently Used (LFU) cache. It should support the f ... 
- Leetcode: LFU Cache     &&      Summary of various Sets: HashSet, TreeSet, LinkedHashSet
		Design and implement a data structure for Least Frequently Used (LFU) cache. It should support the f ... 
- [LeetCode] 460. LFU Cache 最近最不常用页面置换缓存器
		Design and implement a data structure for Least Frequently Used (LFU) cache. It should support the f ... 
- leetcode 146. LRU Cache 、460. LFU Cache
		LRU算法是首先淘汰最长时间未被使用的页面,而LFU是先淘汰一定时间内被访问次数最少的页面,如果存在使用频度相同的多个项目,则移除最近最少使用(Least Recently Used)的项目. LFU ... 
- [LeetCode] LRU Cache 最近最少使用页面置换缓存器
		Design and implement a data structure for Least Recently Used (LRU) cache. It should support the fol ... 
- LFU Cache
		2018-11-06 20:06:04 LFU(Least Frequently Used)算法根据数据的历史访问频率来淘汰数据,其核心思想是“如果数据过去被访问多次,那么将来被访问的频率也更高”. ... 
- Leetcode:LRU Cache,LFU Cache
		在Leetcode上遇到了两个有趣的题目,分别是利用LRU和LFU算法实现两个缓存.缓存支持和字典一样的get和put操作,且要求两个操作的时间复杂度均为O(1). 首先说一下如何在O(1)时间复杂度 ... 
- leetcode 460. LFU Cache
		hash:存储的key.value.freq freq:存储的freq.key,也就是说出现1次的所有key在一起,用list连接 class LFUCache { public: LFUCache( ... 
- [LeetCode]LRU Cache有个问题,求大神解答【已解决】
		题目: Design and implement a data structure for Least Recently Used (LRU) cache. It should support the ... 
随机推荐
- 字典,字符串,元组,字典,集合set,类的初步认识,深浅拷贝
			Python之路[第二篇]:Python基础(一) 入门知识拾遗 一.作用域 对于变量的作用域,执行声明并在内存中存在,该变量就可以在下面的代码中使用. if 1==1: name = 'Jaso ... 
- SqlHelper简单实现(通过Expression和反射)3.实体,数据传输对象(DTO)Helper类设计
			EntityHelper的主要功能有: 1.通过反射获取DTO的字段,主要提供给在需要从Entity获取数据后,填充给DTO并返回的作用: 通过反射获取PropertyInfo[]对象,然后取出Nam ... 
- windows下查看静态库和动态库的导出函数
			在window下查看动态库的导出函数可以用vs自带的Depends工具: 查看静态库的信息要用命令行来实现: dumpbin /LINKERMEMBER Test.lib > 1 ... 
- centos6.8 修改yum安装镜像源
			查看centos系统版本 cat /etc/redhat-release CentOS系统更换软件安装源 第一步:备份你的原镜像文件,以免出错后可以恢复. mv /etc/yum.repos.d/Ce ... 
- 主攻ASP.NET MVC4.0之重生:Jquery Mobile 表单元素
			相关代码: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <tit ... 
- 深入理解JVM2
			1 JVM简介 VM是Java Virtual Machine(Java虚拟机)的缩写,JVM是一种用于计算设备的规范,它是一个虚构出来的计算机,是通过在实际的计算机上仿真模拟各种计算机功能来实现的. ... 
- unity json解析IPA后续
			以前说到的,有很大的限制,只能解析简单的类,如果复杂的就会有问题,从老外哪里看到一片博客,是将类中的list 等复杂对象序列化, using UnityEngine; using System.C ... 
- avaweb学习总结(八)——HttpServletResponse对象(二)
			一.HttpServletResponse常见应用——生成验证码 1.1.生成随机图片用作验证码 生成图片主要用到了一个BufferedImage类, 
- 最短路径Dijkstra模板
			算法思想:把所有的边分成两个集合A,B.集合A表示已经求出最短路径的点,不断扩展集合A,减少集合B.每一扩展就从结合B中找出到源点距离最短的点,加入到A. dis[i]数组代表从出发点到j的距离: m ... 
- 基于“基于dockerhub的jetty镜像的ossfs镜像”部署war包,遇到的文件夹读写权限被限制的问题解决方案
			前提: “基于dockerhub的jetty镜像的ossfs镜像” 已经搭建好了. 部署准备: 1.本地打包:war包-->idea工具 mvn 打包. 2.本地sh脚本:compile_vps ... 
