LRU: C++代码实现
Posted __乔木
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LRU: C++代码实现相关的知识,希望对你有一定的参考价值。
#include <list>
#include <unordered_map>
#include <utility>
using namespace std;
class LRUCache
private:
int _cap = 0;
list<pair<int, int>> _cache;
unordered_map<int, list<pair<int, int>>::iterator> _map;
public:
int get(int key)
if (_map.count(key) > 0)
auto temp = *_map[key];
_cache.erase(_map[key]);
_cache.push_front(temp);
_map[key] = _cache.begin();
return temp.second;
return -1;
void put(int key, int value)
if ( _map.count(key) > 0)
_cache.erase(_map[key]);
_map.erase(key);
else if(_cache.size() == _cap)
_cache.pop_back();
_map.erase(key);
_cache.push_front(pair<int, int>(key,value));
_map[key] = _cache.begin();
;
以上是关于LRU: C++代码实现的主要内容,如果未能解决你的问题,请参考以下文章
LRU(Least Recently Used最近最少使用)的c++实现(顺序表)