前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >LeetCode 0146 - LRU Cache

LeetCode 0146 - LRU Cache

作者头像
Reck Zhang
发布2021-08-11 14:50:54
1900
发布2021-08-11 14:50:54
举报
文章被收录于专栏:Reck Zhang

LRU Cache

Desicription

Design and implement a data structure for Least Recently Used (LRU) 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 reached its capacity, it should invalidate the least recently used item before inserting a new item.

Follow up:

Could you do both operations in O(1) time complexity?

Example:

代码语言:javascript
复制
LRUCache cache = new LRUCache( 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.put(4, 4);    // evicts key 1
cache.get(1);       // returns -1 (not found)
cache.get(3);       // returns 3
cache.get(4);       // returns 4

Solution

代码语言:javascript
复制
class LRUCache {
private:
    int _capacity;
    list<int> used;
    unordered_map<int, pair<int, list<int>::iterator>> cache;

    void touch(unordered_map<int, pair<int, list<int>::iterator>>::iterator it) {
        used.erase(it->second.second);
        used.push_front(it->first);
        it->second.second = used.begin();
    }
public:
    LRUCache(int capacity) : _capacity(capacity) {};
    
    int get(int key) {
        auto it = cache.find(key);
        if(it == cache.end())
            return -1;
        touch(it);
        return it->second.first;
    }

    void put(int key, int value) {
        auto it = cache.find(key);
        if(it != cache.end())
            touch(it);
        else {
            if(cache.size() == _capacity) {
                cache.erase(used.back());
                used.pop_back();
            }
            used.push_front(key);
        }
        cache[key] = {value, used.begin()};
    }
};
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2018-05-29,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • LRU Cache
    • Desicription
      • Solution
      领券
      问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档