IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 数据结构与算法 -> Leetcode 146. LRU Cache -> 正文阅读

[数据结构与算法]Leetcode 146. LRU Cache

Problem

Design a data structure that follows the constraints of a Least Recently Used (LRU) cache.

Implement the LRUCache class:

  • LRUCache(int capacity) Initialize the LRU cache with positive size capacity.
  • int get(int key) Return the value of the key if the key exists, otherwise return -1.
  • void put(int key, int value) Update the value of the key if the key exists. Otherwise, add the key-value pair to the cache. If the number of keys exceeds the capacity from this operation, evict the least recently used key.

The functions get and put must each run in O(1) average time complexity.

Example 1:

Input
["LRUCache", "put", "put", "get", "put", "get", "put", "get", "get", "get"]
[[2], [1, 1], [2, 2], [1], [3, 3], [2], [4, 4], [1], [3], [4]]
Output
[null, null, null, 1, null, -1, null, -1, 3, 4]

Explanation
LRUCache lRUCache = new LRUCache(2);
lRUCache.put(1, 1); // cache is {1=1}
lRUCache.put(2, 2); // cache is {1=1, 2=2}
lRUCache.get(1);    // return 1
lRUCache.put(3, 3); // LRU key was 2, evicts key 2, cache is {1=1, 3=3}
lRUCache.get(2);    // returns -1 (not found)
lRUCache.put(4, 4); // LRU key was 1, evicts key 1, cache is {4=4, 3=3}
lRUCache.get(1);    // return -1 (not found)
lRUCache.get(3);    // return 3
lRUCache.get(4);    // return 4

Constraints:

  • 1 1 1 <= capacity <= 3000 3000 3000
  • 0 0 0 <= key <= 1 0 4 10^4 104
  • 0 0 0 <= value <= 1 0 5 10^5 105
  • At most 2 ? 1 0 5 2 * 10^5 2?105 calls will be made to get and put.

Algorithm

map and doubly linked list.
https://www.code-recipe.com/post/lru-cache

Code

class LRUCache:
    def __init__(self, capacity: int):
        class node:
            def __init__(self, key, val, L=None, R=None):
                self.key = key
                self.val = val
                self.L = L
                self.R = R
        
        class dlink:
            def __init__(self):
                self.head = node(-1, -1)
                self.tail = node(-1, -1)
                self.head.R = self.tail
                self.tail.L = self.head
                self.len = 0

            def add_node(self, key, val):
                new_node = node(key, val, self.head, self.tail)
                new_node.L = self.head
                new_node.R = self.head.R
                self.head.R.L = new_node
                self.head.R = new_node
                self.len += 1
                return new_node

            def del_node(self, now_node=None):
                if not now_node:
                    now_node = self.tail.L
                now_node.L.R = now_node.R
                now_node.R.L = now_node.L
                self.len -= 1
                return now_node

        self.len = capacity
        self.map = {}
        self.lik = dlink()

    def get(self, key: int) -> int:
        if key in self.map:
            index = self.lik.del_node(self.map[key])
            del self.map[index.key]
            new_node = self.lik.add_node(index.key, index.val)
            self.map[key] = new_node
            return new_node.val
        return -1

    def put(self, key: int, value: int) -> None:
        if key in self.map:
            self.lik.del_node(self.map[key])
            del self.map[key]
        
        new_node = self.lik.add_node(key, value)
        self.map[key] = new_node 
        
        if len(self.map) > self.len:
            now_node = self.lik.del_node() # Remove last node
            del self.map[now_node.key]

# Your LRUCache object will be instantiated and called as such:
# obj = LRUCache(capacity)
# param_1 = obj.get(key)
# obj.put(key,value)
  数据结构与算法 最新文章
【力扣106】 从中序与后续遍历序列构造二叉
leetcode 322 零钱兑换
哈希的应用:海量数据处理
动态规划|最短Hamilton路径
华为机试_HJ41 称砝码【中等】【menset】【
【C与数据结构】——寒假提高每日练习Day1
基础算法——堆排序
2023王道数据结构线性表--单链表课后习题部
LeetCode 之 反转链表的一部分
【题解】lintcode必刷50题<有效的括号序列
上一篇文章      下一篇文章      查看所有文章
加:2022-04-24 09:40:34  更:2022-04-24 09:44:49 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/26 8:28:01-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码