题目

运用你所掌握的数据结构,设计和实现一个 LRU (最近最少使用) 缓存机制。它应该支持以下操作: 获取数据 get 和 写入数据 put 。

获取数据 get(key) - 如果密钥 (key) 存在于缓存中,则获取密钥的值(总是正数),否则返回 -1。

写入数据 put(key, value) - 如果密钥不存在,则写入其数据值。当缓存容量达到上限时,它应该在写入新数据之前删除最近最少使用的数据值,从而为新的数据值留出空间。

进阶:
你是否可以在 O(1) 时间复杂度内完成这两种操作?

示例:

  1. LRUCache cache = new LRUCache( 2 /* 缓存容量 */ );
  2. cache.put(1, 1);
  3. cache.put(2, 2);
  4. cache.get(1); // 返回 1
  5. cache.put(3, 3); // 该操作会使得密钥 2 作废
  6. cache.get(2); // 返回 -1 (未找到)
  7. cache.put(4, 4); // 该操作会使得密钥 1 作废
  8. cache.get(1); // 返回 -1 (未找到)
  9. cache.get(3); // 返回 3
  10. cache.get(4); // 返回 4

来源:力扣(LeetCode)链接:https://leetcode-cn.com/problems/lru-cache

解析

LRU (最近最少使用) 缓存机制: Least Recently Used的缩写,即最近最少使用,选择最近最久未使用的页面予以淘汰。该算法赋予每个页面一个访问字段,用来记录一个页面自上次被访问以来所经历的时间 t,当须淘汰一个页面时,选择现有页面中其 t 值最大的,即最近最少使用的页面予以淘汰。

根据算法特点,第一快速,使用哈希;第二页面最久没被使用,表示数据要按照时间有序,使用链表结构。两者兼顾的数据结构—哈希链表。

方法1:Java的LinkHashMap实现LRU

  1. class LRUCache extends LinkedHashMap<Integer, Integer>{
  2. private int capacity;
  3. public LRUCache(int capacity) {
  4. super(capacity, 0.75F, true);
  5. this.capacity = capacity;
  6. }
  7. public int get(int key) {
  8. return super.getOrDefault(key, -1);
  9. }
  10. public void put(int key, int value) {
  11. super.put(key, value);
  12. }
  13. @Override
  14. protected boolean removeEldestEntry(Map.Entry<Integer, Integer> eldest) {
  15. return size() > capacity;
  16. }
  17. }
  18. /**
  19. * LRUCache 对象会以如下语句构造和调用:
  20. * LRUCache obj = new LRUCache(capacity);
  21. * int param_1 = obj.get(key);
  22. * obj.put(key,value);
  23. */

复杂度分析
时间复杂度:对于 put 和 get 操作复杂度是 O(1),因为有序字典中的所有操作: get/in/set/move_to_end/popitem(get/containsKey/put/remove) 都可以在常数时间内完成。
空间复杂度:O(capacity),因为空间只用于有序字典存储最多 capacity + 1 个元素。

方法2:哈希表+双向链表

这个问题可以用哈希表,辅以双向链表记录键值对的信息。所以可以在 O(1) 时间内完成 put 和 get 操作,同时也支持 O(1) 删除第一个添加的节点。

最近最少使用缓存机制 - 图1
为什么使用双向链表?
使用双向链表的一个好处是不需要额外信息删除一个节点,同时可以在常数时间内从头部或尾部插入删除节点。
一个需要注意的是,在双向链表实现中,这里使用一个伪头部和伪尾部标记界限,这样在更新的时候就不需要检查是否是 null 节点。

  1. import java.util.Hashtable;
  2. public class LRUCache {
  3. class DLinkedNode {
  4. int key;
  5. int value;
  6. DLinkedNode prev;
  7. DLinkedNode next;
  8. }
  9. private void addNode(DLinkedNode node) {
  10. /**
  11. * Always add the new node right after head.
  12. */
  13. node.prev = head;
  14. node.next = head.next;
  15. head.next.prev = node;
  16. head.next = node;
  17. }
  18. private void removeNode(DLinkedNode node){
  19. /**
  20. * Remove an existing node from the linked list.
  21. */
  22. DLinkedNode prev = node.prev;
  23. DLinkedNode next = node.next;
  24. prev.next = next;
  25. next.prev = prev;
  26. }
  27. private void moveToHead(DLinkedNode node){
  28. /**
  29. * Move certain node in between to the head.
  30. */
  31. removeNode(node);
  32. addNode(node);
  33. }
  34. private DLinkedNode popTail() {
  35. /**
  36. * Pop the current tail.
  37. */
  38. DLinkedNode res = tail.prev;
  39. removeNode(res);
  40. return res;
  41. }
  42. private Hashtable<Integer, DLinkedNode> cache =
  43. new Hashtable<Integer, DLinkedNode>();
  44. private int size;
  45. private int capacity;
  46. private DLinkedNode head, tail;
  47. public LRUCache(int capacity) {
  48. this.size = 0;
  49. this.capacity = capacity;
  50. head = new DLinkedNode();
  51. // head.prev = null;
  52. tail = new DLinkedNode();
  53. // tail.next = null;
  54. head.next = tail;
  55. tail.prev = head;
  56. }
  57. public int get(int key) {
  58. DLinkedNode node = cache.get(key);
  59. if (node == null) return -1;
  60. // move the accessed node to the head;
  61. moveToHead(node);
  62. return node.value;
  63. }
  64. public void put(int key, int value) {
  65. DLinkedNode node = cache.get(key);
  66. if(node == null) {
  67. DLinkedNode newNode = new DLinkedNode();
  68. newNode.key = key;
  69. newNode.value = value;
  70. cache.put(key, newNode);
  71. addNode(newNode);
  72. ++size;
  73. if(size > capacity) {
  74. // pop the tail
  75. DLinkedNode tail = popTail();
  76. cache.remove(tail.key);
  77. --size;
  78. }
  79. } else {
  80. // update the value.
  81. node.value = value;
  82. moveToHead(node);
  83. }
  84. }
  85. }
  86. /**
  87. * LRUCache 对象会以如下语句构造和调用:
  88. * LRUCache obj = new LRUCache(capacity);
  89. * int param_1 = obj.get(key);
  90. * obj.put(key,value);
  91. */

复杂度分析
时间复杂度:对于 put 和 get 都是O(1)。
空间复杂度:O(capacity),因为哈希表和双向链表最多存储 capacity + 1 个元素。

总结

学习使用哈希表和链表,明确双向链表的适用场景。