LC.P146[LRU缓存]
方法一:手写LRU
1 | class LRUCache { |
方法二:手写LRU
1 | class LRUCache { |
方法三:继承LinkedHashMap
1 | class LRUCache extends LinkedHashMap<Integer, Integer> { |
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 byu_rself!
评论
1 | class LRUCache { |
1 | class LRUCache { |
1 | class LRUCache extends LinkedHashMap<Integer, Integer> { |