2 Star 1 Fork 0

royce li/Leetcode_royce

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
LRUCache.js 2.25 KB
一键复制 编辑 原始数据 按行查看 历史
Royce Li 提交于 2021-05-10 16:39 . 2020/5/10 First Commit
/**
* @param {number} capacity
*/
function linkNode(key,val){
this.key=key;
this.val=val;
this.pre=null;
this.next=null;
}
var LRUCache = function(capacity) {
this.mapper=new Map();
this.head=null;
this.tail=null
this.capacity=capacity;
this.length=0;
};
/**
* @param {number} key
* @return {number}
*/
LRUCache.prototype.get = function(key) {
if(this.mapper.has(key)){
let node=this.mapper.get(key)
if(this.tail!==this.head && this.head!==node){
this.moveToTop(node);
}
return node.val;
}
return -1;
};
/**
* @param {number} key
* @param {number} value
* @return {void}
*/
LRUCache.prototype.put = function(key, value) {
if(this.mapper.has(key)){
let node=this.mapper.get(key);
if(this.tail!==this.head && this.head!==node){
this.moveToTop(node);
}
node.val=value;
}
else{
let node=new linkNode(key,value);
if(this.head){
node.next=this.head;
this.head.pre=node;
this.head=node;
if(this.length==this.capacity){
this.mapper.delete(this.tail.key);
this.tail.pre.next=null;
this.tail=this.tail.pre;
}
else{
this.length++;
}
}
else{
this.head=node;
this.tail=node;
this.length++;
}
this.mapper.set(key,node);
}
};
LRUCache.prototype.moveToTop=function(node){
if(node.next){
node.pre.next=node.next;
node.next.pre=node.pre;
}
else{
this.tail=node.pre;
this.tail.next=null;
}
node.next=this.head;
this.head.pre=node;
this.head=node;
node.pre=null;
return ;
}
/**
* Your LRUCache object will be instantiated and called as such:
* var obj = new LRUCache(capacity)
* var param_1 = obj.get(key)
* obj.put(key,value)
*/
// 执行用时:
// 220 ms
// , 在所有 JavaScript 提交中击败了
// 96.33%
// 的用户
// 内存消耗:
// 51 MB
// , 在所有 JavaScript 提交中击败了
// 48.05%
// 的用户
console.log()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/royce-li/leetcode_royce.git
git@gitee.com:royce-li/leetcode_royce.git
royce-li
leetcode_royce
Leetcode_royce
master

搜索帮助