LRU是Least Recently Used的缩写,即最近最少使用页面置换算法, ... class LRUCache { constructor(size){ this.size = size; this.cache = new ...
確定! 回上一頁