ChapterThree Add LFUCache/LRUCache

This commit is contained in:
YDZ
2021-01-04 00:22:14 +08:00
parent 7bc6c9d9a0
commit 0735a68bc9
5 changed files with 636 additions and 2 deletions

View File

@ -60,7 +60,7 @@ lfu.get(4); // return 4
## 解题思路
- 这一题是 LFU 经典面试题,详细解释见第三章模板
- 这一题是 LFU 经典面试题,详细解释见[第三章 LFUCache 模板](https://books.halfrost.com/leetcode/ChapterThree/LFUCache/)
## 代码