摘要: 1.LRU缓存机制https://leetcode-cn.com/problems/lru-cache/ 拿到题目先想的是用字典,删除元素就想找是否有可以顺序删除字典元素的方法,但是好像没有 看了官方答案感觉有点高深,哈希表+双向链表 1 class DLinkedNode: 2 def __ini 阅读全文
posted @ 2021-01-23 10:03 zmbreathing 阅读(98) 评论(0) 推荐(0) 编辑