鱼C论坛

 找回密码
 立即注册
查看: 1152|回复: 0

[学习笔记] Leetcode 146. LRU Cache

[复制链接]
发表于 2020-9-25 22:31:09 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
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.
Follow up:
Could you do get and put in O(1) 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 <= capacity <= 3000
0 <= key <= 3000
0 <= value <= 104
At most 3 * 104 calls will be made to get and put.

  1. class Node:
  2.     def __init__(self, key, val):
  3.         self.key = key
  4.         self.val = val
  5.         self.prev = None
  6.         self.next = None

  7. class LRUCache:
  8.     def __init__(self, capacity: int):
  9.         self.capacity = capacity
  10.         self.head = Node(-1, -1)
  11.         self.tail = Node(-1, -1)
  12.         self.head.next = self.tail
  13.         self.tail.prev = self.head
  14.         self.hashmap = collections.defaultdict(Node)

  15.     def get(self, key: int) -> int:
  16.         if key not in self.hashmap:
  17.             return -1
  18.         node = self.hashmap[key]
  19.         self.remove(node)
  20.         self.add(node)
  21.         return self.hashmap[key].val

  22.     def put(self, key: int, value: int) -> None:
  23.         if key in self.hashmap:
  24.             self.hashmap[key].val = value
  25.             node = self.hashmap[key]
  26.             self.remove(node)
  27.             self.add(node)
  28.             return
  29.         
  30.         if len(self.hashmap) >= self.capacity:
  31.             last = self.tail.prev
  32.             self.hashmap.pop(last.key)
  33.             self.remove(last)
  34.         new_node = Node(key, value)
  35.         self.hashmap[key] = new_node
  36.         self.add(new_node)
  37.         
  38.     def remove(self, node: Node) -> None:
  39.         prev = node.prev
  40.         next = node.next
  41.         prev.next = next
  42.         next.prev = prev
  43.         
  44.     def add(self, node: Node) -> None:
  45.         next = self.head.next
  46.         self.head.next = node
  47.         node.prev = self.head
  48.         node.next = next
  49.         next.prev = node
  50. # Your LRUCache object will be instantiated and called as such:
  51. # obj = LRUCache(capacity)
  52. # param_1 = obj.get(key)
  53. # obj.put(key,value)
复制代码

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-5-5 04:06

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表