码迷,mamicode.com
首页 > 系统相关 > 详细

[LeetCode] LFU Cache 最近最不常用页面置换缓存器

时间:2017-01-07 08:19:39      阅读:598      评论:0      收藏:0      [点我收藏+]

标签:new   dia   get   already   otherwise   sts   not found   recently   tco   

 

Design and implement a data structure for Least Frequently Used (LFU) cache. It should support the following operations: get and 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

 

s

 

[LeetCode] LFU Cache 最近最不常用页面置换缓存器

标签:new   dia   get   already   otherwise   sts   not found   recently   tco   

原文地址:http://www.cnblogs.com/grandyang/p/6258459.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!