460LFU Cache

题意:设计并实现LFU缓存,需要支持get、set操作,二者的语义描述如下:

get(key):如果key在缓存中,返回值,否则返回-1;

set(key, value) :如果key不存在,插入(key, value)。注意问题:1、当缓存满时(达到缓存capacity),先淘汰掉最近使用最少的项;2、当多个key访问频率相同时,淘汰最近没被访问的key。

要求:set/get操作的时间复杂度为O(1)

思路:1、数据结构---->HashMap保存(key, value)映射,

            2、淘汰策略实现-----> HashMap(key, <count,timespan>),其中count是key的访问频率,timespan是计数器表示访问时间,按照count比较优先,其次按照timespan比较,淘汰count、timespan最小的key,该操作的时间复杂度为O(n), 分摊成本为O(1/capacity)


ps:HashMap VS HashTable(HashMap implements Map, HashTable extends Dictionary; HashMap无同步实现,HashTable已实现同步,故HashMap是HashTable的轻量级实现)


import java.util.HashMap;
import java.util.Map;

public class LFUCache {
	HashMap
   
   
    
     map;
	HashMap
    
    
     
      lfu; 
	int counter = 0; //count #ops 
	int capacity;
	
	public LFUCache(int capacity){
		if(capacity == 0){
			this.capacity = -1;
			return;
		}
		this.capacity = capacity;
		map = new HashMap<>(capacity);
		lfu = new HashMap<>(capacity);
	}
	
	public void updateAttr(int key){
		if(!lfu.containsKey(key)){
			Attr value = new Attr(0, 0);
			lfu.put(key, value);
		}
		Attr attr = lfu.get(key);
		attr.count++;
		attr.timespan = ++counter;
	}
	
	public int get(int key){
		if(capacity < 0 || !map.containsKey(key))
			return -1;
		updateAttr(key);
		return map.get(key);
	}
	
	public void set(int key, int value){
		if(capacity < 0){
			return;
		}
		if(map.containsKey(key)){
			map.put(key, value); //replace old value with new one
			updateAttr(key);
		}else{
			if(capacity == 0){//run out of cache space
				Integer rev = findLeast();
				map.remove(rev);
				lfu.remove(rev);
				capacity++;
			}
			map.put(key, value);
			capacity--;
			updateAttr(key);
		}
	}
	
	public Integer findLeast(){
		int key = 0;
		Attr attr = new Attr(Integer.MAX_VALUE, 0);
		for(Map.Entry
     
     
      
       ety : lfu.entrySet()){
			Attr lbe = ety.getValue();
			if(attr.compareTo(lbe) > 0){
				key = ety.getKey();
				attr = lbe;
			}
		}
		return key;
	}
	
	
	static class Attr implements Comparable
      
      
       
       {
		int count;
		int timespan;
		
		public Attr(int count, int timespan) {
			super();
			this.count = count;
			this.timespan = timespan;
		}

		@Override
		public int compareTo(Attr o) {
			if(this.count - o.count != 0)
				return this.count - o.count;
			else{
				return this.timespan - o.timespan;
			}
		}
	}
}
      
      
     
     
    
    
   
   


          




``` class LFUCache { private: int capacity; int minFreq; unordered_map<int, pair<int, int>> cache; // key -> {value, freq} unordered_map<int, list<int>::iterator> freqMap; // freq -> iterator of keys unordered_map<int, list<int>> lruMap; // freq -> list of keys public: LFUCache(int capacity) { this->capacity = capacity; minFreq = 0; } int get(int key) { if (cache.count(key) == 0) { return -1; } int value = cache[key].first; int freq = cache[key].second; freqMap.erase(key); lruMap[freq].erase(freqMap[key]); if (lruMap[freq].empty()) { lruMap.erase(freq); if (freq == minFreq) { minFreq++; } } freq++; cache[key] = {value, freq}; lruMap[freq].push_front(key); freqMap[key] = lruMap[freq].begin(); return value; } void put(int key, int value) { if (capacity == 0) { return; } if (cache.count(key) != 0) { cache[key].first = value; get(key); return; } if (cache.size() == capacity) { int keyToRemove = lruMap[minFreq].back(); lruMap[minFreq].pop_back(); freqMap.erase(keyToRemove); cache.erase(keyToRemove); } minFreq = 1; cache[key] = {value, minFreq}; lruMap[minFreq].push_front(key); freqMap[key] = lruMap[minFreq].begin(); } }; ``` LFU Cache类的实现使用了三个哈希表: - `cache` 哈希表:存储键值对和对应的频率。 - `freqMap` 哈希表:存储键值对的频率和对应的迭代器。 - `lruMap` 哈希表:存储键值对的频率和对应的链表。 其中,`cache` 哈希表用于快速查找键值对,`freqMap` 哈希表用于快速查找键值对对应的迭代器,`lruMap` 哈希表用于快速查找某个频率对应的键值对。 LFU Cache类有两个方法: - `get` 方法:根据键获取值,如果键不存在则返回 -1。同时更新键值对的频率和链表。 - `put` 方法:插入一个键值对。如果键已存在,则更新值和频率;如果容量已满,则删除频率最小的键值对。同时更新最小频率和链表。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值