题解 | #设计LRU缓存结构#

设计LRU缓存结构

https://www.nowcoder.com/practice/5dfded165916435d9defb053c63f1e84

哈希表:利用查找O(1)特性,用于记录key对应的键值对在链表中的位置,用指针表示。

双向链表:利用插入和删除操作的O(1)特性。用于模拟缓存,当哈希表给出了操作的位置,就可以直接调整链表结点的指针从而实现O(1)的插入和删除。

class Solution {
  private:
    int capacity;
    unordered_map<int, list<pair<int, int>>::iterator> hash; //{key=iterator}
    list<pair<int, int>> cache; //{"1"="1","2"="2"}
  public:
    Solution(int capacity) {
        this->capacity = capacity;
    }

    int get(int key) {
        if (hash.find(key) != hash.end()) {
            auto kv = hash[key];
            cache.erase(hash[key]);
            cache.push_front(*kv);
            return (*kv).second;
        } else {
            return -1;
        }
    }

    void set(int key, int value) {
        if (hash.find(key) == hash.end()) {
            if (cache.size() == capacity) {
                hash.erase(cache.back().first);
                cache.pop_back();
            }
        } else {
            cache.erase(hash[key]);
        }
        cache.push_front({key, value});
        hash[key] = cache.begin();
    }
};

/**
 * Your Solution object will be instantiated and called as such:
 * Solution* solution = new Solution(capacity);
 * int output = solution->get(key);
 * solution->set(key,value);
 */

全部评论

相关推荐

03-25 19:00
东北大学 Java
程序员牛肉:太好了,是聊天记录。不得不信了。 当个乐子看就好,不要散播焦虑
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务