leecode第一百四十六题(LRU缓存机制)

Posted cjt-blog

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leecode第一百四十六题(LRU缓存机制)相关的知识,希望对你有一定的参考价值。

技术图片

 

class LRUCache {
private:
    unordered_map<int, list<pair<int,int>>::iterator> _m;
    // 新节点或刚访问的节点插入表头,因为表头指针可以通过 begin 很方便的获取到。
    list<pair<int,int>> _list;
    int _cap;
public:
    LRUCache(int capacity) : _cap(capacity) {}
    
    // O(1)
    // hash 查找,如果找到了,就把 list 中的节点接下来移到头部
    int get(int key) {
        auto it = _m.find(key);
        if (it == _m.end()) return -1;
        int val = it->second->second;
        _list.erase(it->second);
        _list.push_front(make_pair(key, val));
        _m[key] = _list.begin();
        return it->second->second;
    }
    
    // O(1)
    // 先查找旧 key 是否存在,如果存在,将节点移动到首部。
    // 如果不存在,插入新节点。
    // 如果容量超限,删除最脏的节点。
    void put(int key, int value) {
        auto it = _m.find(key);
        if (it != _m.end()) {
            _list.erase(it->second);
        }
        
        _list.push_front(make_pair(key, value));
        _m[key] = _list.begin();
        
        if (_list.size() > _cap) {
            int key = _list.back().first;
            _m.erase(key);
            _list.pop_back();
        }
    }
};

/**
 * Your LRUCache object will be instantiated and called as such:
 * LRUCache* obj = new LRUCache(capacity);
 * int param_1 = obj->get(key);
 * obj->put(key,value);
 */

 分析:

写的太丑了,不如人家写的好,只能借鉴别人的。要学的东西好多啊。

以上是关于leecode第一百四十六题(LRU缓存机制)的主要内容,如果未能解决你的问题,请参考以下文章

#yyds干货盘点# 前端歌谣的刷题之路-第一百四十六题-双列布局-flex

leecode第一百四十二题(环形链表II)

小刘同学的第一百四十四篇博文

第一百四十五节,JavaScript,同步动画

小刘同学的第一百四十篇日记

第一百四十节,JavaScript,封装库--浏览器检测