LRU: Least Recently Used
LFU: Least Frequently Used

146. LRU 缓存

请你设计并实现一个满足 LRU (最近最少使用) 缓存 约束的数据结构。
实现 LRUCache 类:

  • LRUCache(int capacity) 以 正整数 作为容量 capacity 初始化 LRU 缓存
  • int get(int key) 如果关键字 key 存在于缓存中,则返回关键字的值,否则返回 -1 。
  • void put(int key, int value) 如果关键字 key 已经存在,则变更其数据值 value ;如果不存在,则向缓存中插入该组 key-value 。如果插入操作导致关键字数量超过 capacity ,则应该 逐出 最久未使用的关键字。

函数 get 和 put 必须以 O(1) 的平均时间复杂度运行。

示例:
输入 [“LRUCache”, “put”, “put”, “get”, “put”, “get”, “put”, “get”, “get”, “get”] [[2], [1, 1], [2, 2], [1], [3, 3], [2], [4, 4], [1], [3], [4]] 输出 [null, null, null, 1, null, -1, null, -1, 3, 4] 解释 LRUCache lRUCache = new LRUCache(2); lRUCache.put(1, 1); // 缓存是 {1=1} lRUCache.put(2, 2); // 缓存是 {1=1, 2=2} lRUCache.get(1); // 返回 1 lRUCache.put(3, 3); // 该操作会使得关键字 2 作废,缓存是 {1=1, 3=3} lRUCache.get(2); // 返回 -1 (未找到) lRUCache.put(4, 4); // 该操作会使得关键字 1 作废,缓存是 {4=4, 3=3} lRUCache.get(1); // 返回 -1 (未找到) lRUCache.get(3); // 返回 3 lRUCache.get(4); // 返回 4

提示:

  • 1 <= capacity <= 3000
  • 0 <= key <= 10000
  • 0 <= value <= 105
  • 最多调用 2 * 105 次 get 和 put

思路:
哈希表 + 双链表
从队头到队尾维护最近使用的节点(使用时间戳队头比队尾更接近现在时间)

  1. class LRUCache {
  2. private class Node {
  3. int key, val;
  4. Node left, right;
  5. }
  6. Node hh, tt;
  7. Map<Integer, Node> map;
  8. int n;
  9. public LRUCache(int capacity) {
  10. this.n = capacity;
  11. map = new HashMap<>();
  12. hh = new Node();
  13. tt = new Node();
  14. hh.right = tt;
  15. tt.left = hh;
  16. }
  17. public int get(int key) {
  18. if (map.containsKey(key)) {
  19. Node node = map.get(key);
  20. delete(node);
  21. add(node);
  22. return node.val;
  23. } else return -1;
  24. }
  25. public void put(int key, int value) {
  26. if (map.containsKey(key)) {
  27. Node node = map.get(key);
  28. node.val = value;
  29. delete(node);
  30. add(node);
  31. } else {
  32. Node node = new Node();
  33. node.val = value;
  34. node.key = key;
  35. if (map.size() == n) {
  36. Node p = tt.left;
  37. delete(p);
  38. map.remove(p.key);
  39. }
  40. map.put(key, node);
  41. add(node);
  42. }
  43. }
  44. private void add(Node node) {
  45. node.right = hh.right;
  46. node.left = hh;
  47. hh.right.left = node;
  48. hh.right = node;
  49. }
  50. private void delete(Node node) {
  51. node.left.right = node.right;
  52. node.right.left = node.left;
  53. }
  54. }
  55. /**
  56. * Your LRUCache object will be instantiated and called as such:
  57. * LRUCache obj = new LRUCache(capacity);
  58. * int param_1 = obj.get(key);
  59. * obj.put(key,value);
  60. */

460. LFU 缓存

请你为 最不经常使用(LFU)缓存算法设计并实现数据结构。
实现 LFUCache 类:

  • LFUCache(int capacity) - 用数据结构的容量 capacity 初始化对象
  • int get(int key) - 如果键 key 存在于缓存中,则获取键的值,否则返回 -1 。
  • void put(int key, int value) - 如果键 key 已存在,则变更其值;如果键不存在,请插入键值对。当缓存达到其容量 capacity 时,则应该在插入新项之前,移除最不经常使用的项。在此问题中,当存在平局(即两个或更多个键具有相同使用频率)时,应该去除 最近最久未使用 的键。

为了确定最不常使用的键,可以为缓存中的每个键维护一个 使用计数器 。使用计数最小的键是最久未使用的键。
当一个键首次插入到缓存中时,它的使用计数器被设置为 1 (由于 put 操作)。对缓存中的键执行 get 或 put 操作,使用计数器的值将会递增。
函数 get 和 put 必须以 O(1) 的平均时间复杂度运行。

示例:
输入: [“LFUCache”, “put”, “put”, “get”, “put”, “get”, “get”, “put”, “get”, “get”, “get”] [[2], [1, 1], [2, 2], [1], [3, 3], [2], [3], [4, 4], [1], [3], [4]] 输出: [null, null, null, 1, null, -1, 3, null, -1, 3, 4] 解释: // cnt(x) = 键 x 的使用计数 // cache=[] 将显示最后一次使用的顺序(最左边的元素是最近的) LFUCache lfu = new LFUCache(2); lfu.put(1, 1); // cache=[1,_], cnt(1)=1 lfu.put(2, 2); // cache=[2,1], cnt(2)=1, cnt(1)=1 lfu.get(1); // 返回 1 // cache=[1,2], cnt(2)=1, cnt(1)=2 lfu.put(3, 3); // 去除键 2 ,因为 cnt(2)=1 ,使用计数最小 // cache=[3,1], cnt(3)=1, cnt(1)=2 lfu.get(2); // 返回 -1(未找到) lfu.get(3); // 返回 3 // cache=[3,1], cnt(3)=2, cnt(1)=2 lfu.put(4, 4); // 去除键 1 ,1 和 3 的 cnt 相同,但 1 最久未使用 // cache=[4,3], cnt(4)=1, cnt(3)=2 lfu.get(1); // 返回 -1(未找到) lfu.get(3); // 返回 3 // cache=[3,4], cnt(4)=1, cnt(3)=3 lfu.get(4); // 返回 4 // cache=[3,4], cnt(4)=2, cnt(3)=3

提示:

  • 0 <= capacity <= 104
  • 0 <= key <= 105
  • 0 <= value <= 109
  • 最多调用 2 * 105 次 get 和 put 方法

思路:
双哈希表 + 双链表套双链表

  1. class LFUCache {
  2. class Node {
  3. int key, val;
  4. Node left, right;
  5. Node(){};
  6. Node(int key, int val) {
  7. this.key = key;
  8. this.val = val;
  9. }
  10. }
  11. class Block {
  12. int cnt;
  13. Node hh, tt;
  14. Block left, right;
  15. Block(int cnt) {
  16. this.cnt = cnt;
  17. hh = new Node();
  18. tt = new Node();
  19. hh.right = tt;
  20. tt.left = hh;
  21. }
  22. void delete(Node node) {
  23. node.right.left = node.left;
  24. node.left.right = node.right;
  25. }
  26. void add(Node node) {
  27. node.right = hh.right;
  28. node.left = hh;
  29. hh.right.left = node;
  30. hh.right = node;
  31. }
  32. boolean isEmpty() {
  33. return hh.right == tt;
  34. }
  35. }
  36. Block hh, tt;
  37. int n;
  38. Map<Integer, Node> map_node;
  39. Map<Integer, Block> map_block;
  40. public LFUCache(int capacity) {
  41. this.n = capacity;
  42. hh = new Block(0);
  43. tt = new Block(Integer.MAX_VALUE);
  44. hh.right = tt;
  45. tt.left = hh;
  46. map_block = new HashMap<>();
  47. map_node = new HashMap<>();
  48. }
  49. public int get(int key) {
  50. if (!map_node.containsKey(key)) return -1;
  51. Block block = map_block.get(key);
  52. Node node = map_node.get(key);
  53. block.delete(node);
  54. if (block.cnt + 1 != block.right.cnt)
  55. add(block, new Block(block.cnt + 1));
  56. Block ne = block.right;
  57. ne.add(node);
  58. map_block.put(key, ne);
  59. if (block.isEmpty()) {
  60. delete(block);
  61. }
  62. return node.val;
  63. }
  64. public void put(int key, int value) {
  65. if (n == 0) return;
  66. if (map_node.containsKey(key)) {
  67. Node node = map_node.get(key);
  68. node.val = value;
  69. get(key);
  70. } else {
  71. if (map_node.size() == n) {
  72. Node node = hh.right.tt.left;
  73. map_node.remove(node.key);
  74. map_block.remove(node.key);
  75. hh.right.delete(hh.right.tt.left);
  76. if (hh.right.isEmpty())
  77. delete(hh.right);
  78. }
  79. Node node = new Node(key, value);
  80. map_node.put(key, node);
  81. if (hh.right.cnt == 1) {
  82. Block block = hh.right;
  83. map_block.put(key, block);
  84. block.add(node);
  85. } else {
  86. Block block = new Block(1);
  87. add(hh, block);
  88. block.add(node);
  89. map_block.put(key, block);
  90. }
  91. }
  92. }
  93. void delete(Block block) {
  94. block.right.left = block.left;
  95. block.left.right = block.right;
  96. }
  97. void add(Block left, Block block) {
  98. block.right = left.right;
  99. block.left = left;
  100. left.right.left = block;
  101. left.right = block;
  102. }
  103. }
  104. /**
  105. * Your LFUCache object will be instantiated and called as such:
  106. * LFUCache obj = new LFUCache(capacity);
  107. * int param_1 = obj.get(key);
  108. * obj.put(key,value);
  109. */

类似的问题:

432. 全 O(1) 的数据结构 LFU的简易版