mirror of
https://github.com/halfrost/LeetCode-Go.git
synced 2025-07-07 01:44:56 +08:00
ChapterThree Add LFUCache/LRUCache
This commit is contained in:
@ -55,7 +55,7 @@ lRUCache.get(4); // return 4
|
||||
|
||||
## 解题思路
|
||||
|
||||
- 这一题是 LRU 经典面试题,详细解释见第三章模板。
|
||||
- 这一题是 LRU 经典面试题,详细解释见[第三章 LRUCache 模板](https://books.halfrost.com/leetcode/ChapterThree/LRUCache/)。
|
||||
|
||||
## 代码
|
||||
|
||||
|
@ -60,7 +60,7 @@ lfu.get(4); // return 4
|
||||
|
||||
## 解题思路
|
||||
|
||||
- 这一题是 LFU 经典面试题,详细解释见第三章模板。
|
||||
- 这一题是 LFU 经典面试题,详细解释见[第三章 LFUCache 模板](https://books.halfrost.com/leetcode/ChapterThree/LFUCache/)。
|
||||
|
||||
## 代码
|
||||
|
||||
|
Reference in New Issue
Block a user