学习记录:js算法(三十三):LRU 缓存

news/2024/12/22 9:02:06/

文章目录

    • LRU 缓存
      • 网上思路
    • 总结

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 ,则应该 逐出 最久未使用的关键字。

输入
["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

我的思路
题目看的我一头雾水,一点思路没有,还去查了什么是 [LRU],最后还是没看懂。。。(https://baike.baidu.com/item/LRU)
网上思路
哈希表

网上思路

class Node {constructor(key, value) {this.key = key;this.value = value;this.prev = null;this.next = null;}
}class LRUCache {constructor(capacity) {this.capacity = capacity;this.hash = new Map(); // 用于快速查找this.head = new Node(); // 链表头节点,不存储数据this.tail = new Node(); // 链表尾节点,不存储数据this.head.next = this.tail;this.tail.prev = this.head;}get(key) {if (this.hash.has(key)) {const node = this.hash.get(key);this.moveToHead(node); // 将访问的节点移到链表头部return node.value;}return -1;}put(key, value) {if (this.hash.has(key)) {const node = this.hash.get(key);node.value = value; // 更新值this.moveToHead(node); // 移到头部} else {const newNode = new Node(key, value);this.hash.set(key, newNode);this.addToHead(newNode); // 插入到头部if (this.hash.size > this.capacity) {// 超出容量,删除尾部节点const removedNode = this.removeTail();this.hash.delete(removedNode.key);}}}moveToHead(node) {this.removeNode(node);this.addToHead(node);}addToHead(node) {node.prev = this.head;node.next = this.head.next;this.head.next.prev = node;this.head.next = node;}removeNode(node) {node.prev.next = node.next;node.next.prev = node.prev;}removeTail() {const removedNode = this.tail.prev;this.removeNode(removedNode);return removedNode;}
}
// 这段代码首先定义了一个Node类来表示缓存中的每一个键值对,包含了指向前后节点的指针。
// LRUCache类则实现了LRU缓存的所有功能,包括使用哈希表快速查找,以及通过双向链表来维护元素的使用顺序。
// get和put方法均能在平均时间复杂度O(1)内完成操作。// 或者使用以下代码
/*** @param {number} capacity*/
var LRUCache = function(capacity) {this.capacity = capacity;this.hash = new Map();this.head = new Node();this.tail = new Node();this.head.next = this.tail;this.tail.prev = this.head;
};/** * @param {number} key* @return {number}*/
LRUCache.prototype.get = function(key) {if (this.hash.has(key)) {const node = this.hash.get(key);this.moveToHead(node);return node.value;}return -1;
};/** * @param {number} key * @param {number} value* @return {void}*/
LRUCache.prototype.put = function(key, value) {if (this.hash.has(key)) {const node = this.hash.get(key);node.value = value;this.moveToHead(node);} else {const newNode = new Node(key, value);this.hash.set(key, newNode);this.addToHead(newNode);if (this.hash.size > this.capacity) {const removedNode = this.removeTail();this.hash.delete(removedNode.key);}}
};LRUCache.prototype.moveToHead = function(node) {this.removeNode(node);this.addToHead(node);
};LRUCache.prototype.addToHead = function(node) {node.prev = this.head;node.next = this.head.next;this.head.next.prev = node;this.head.next = node;
};LRUCache.prototype.removeNode = function(node) {node.prev.next = node.next;node.next.prev = node.prev;
};LRUCache.prototype.removeTail = function() {const removedNode = this.tail.prev;this.removeNode(removedNode);return removedNode;
};// Node类定义保持不变
class Node {constructor(key, value) {this.key = key;this.value = value;this.prev = null;this.next = null;}
}

讲解
要实现 LRU 缓存,我们可以使用哈希表(在 JavaScript 中是对象或 Map )和双向链表来完成。双向链表用于存储缓存项,确保插入、删除操作的高效性,而哈希表用于快速查找缓存项在链表中的位置。

  1. 数据结构选择:
    ○ 哈希表:快速查找键值对,时间复杂度O(1)。
    ○ 双向链表:快速在头部添加和尾部删除元素,符合 LRU 特性。
  2. 实现逻辑:
    get(key) 操作:如果 key 存在于哈希表中,将对应节点移到链表头部,并返回其值;否则返回-1。
    put(key, value) 操作:如果 key 已存在,更新其值并移到链表头部;如果key 不存在且缓存已满,删除链表尾部节点(即最久未使用的项),然后在链表头部插入新的 key-value 对。

总结

今天纯摆烂,把网上的思路贴上来,也没搞懂。。。


http://www.ppmy.cn/news/1526922.html

相关文章

TypeScript:高级类型

一、交叉类型(Intersection Types) 交叉类型是将多个类型合并为一个类型。 这让我们可以把现有的多种类型叠加到一起成为一种类型,它包含了所需的所有类型的特性。 例如, Person & Serializable & Loggable同时是 Person …

华为OD机试真题-服务器广播-2024年OD统一考试(E卷)

最新华为OD机试考点合集:华为OD机试2024年真题题库(E卷+D卷+C卷)_华为od机试题库-CSDN博客 题目描述 服务器连接方式包括直接相连,间接相连。A和B直接连接,B和C直接连接,则A和C间接连接直接连接和间接连接都可以发送广播。 给出一个 N*N 数组,代表 N 个服务器 matrix…

Java-数据结构-二叉树-习题(一) (✪ω✪)

文本目录: ❄️一、习题一(检查两颗树是否相同): ▶ 思路: ▶ 代码: ❄️二、习题二(另一棵树的子树): ▶ 思路: ▶ 代码: ❄️三、习题三(翻转二叉树): ▶ 思路: ▶ 代…

ThreadX源码:Cortex-A7的tx_thread_irq_nesting_start(嵌套中断开始动作).s汇编代码分析

0 参考资料 Cortex M3权威指南(中文).pdf(可以参考ARM指令集用法) 1 前言 tx_thread_irq_nesting_start.s是用来实现Cortex-A7 IRQ嵌套中断的开始函数实现的汇编文件。 2 源码分析 源码如下: 1  IRQ_DISABLE 0x80…

网络安全(黑客技术)2024年三个月自学手册

🤟 基于入门网络安全/黑客打造的:👉黑客&网络安全入门&进阶学习资源包 前言 什么是网络安全 网络安全可以基于攻击和防御视角来分类,我们经常听到的 “红队”、“渗透测试” 等就是研究攻击技术,而“蓝队”、…

Linux系统应用之知识补充——OpenEuler(欧拉)的安装和基础配置

前言 这篇文章将会对OpenEuler的安装进行详解,一步一步跟着走下去就可以成功 注意 :以下的指令操作最好在root权限下进行(即su - root) ☀️工贵其久,业贵其专! 1、OpenEuler的安装 这里我不过多介绍&a…

OCR2.0--General OCR Theory

引领光学字符识别(OCR)的新篇章 引言:OCR技术进化的必要性 光学字符识别(OCR)是一项广泛应用的技术,它能够从图像中提取字符并将其转换为可编辑格式。虽然OCR-1.0在过去取得了广泛应用,但传统…

华为初级认证HCIA怎么样?

想在网络技术领域实现职业突破吗?华为HCIA初级认证是专为网络领域的新手与初学者设计的一项入门级认证。它旨在评估并确认个人对网络基本原理和技术知识的扎实掌握,是步入华为认证体系大门的基石。 一、华为HCIA 初级认证概述 华为初级认证网络工程师&am…