leetcode-146. LRU 缓存机制 题目: 代码: #include #include #include
struct DLinkedNode{ int key,value; DLinkedNode *prev,*next; };
unordered_mapcache; DLinkedNode* head,*tail; int size; int capacity;
LRUCache(int _capacity):capacity(_capacity),size(0) { head = new DLinkedNode; tail = new DLinkedNode; head->next = tail; tail->prev = head; }
leetcode-146. LRU 缓存机制最先出现在Python成神之路。
版权声明: 作者:玉兰 链接:https://www.techfm.club/p/7121.html 来源:TechFM 文章版权归作者所有,未经允许请勿转载。
Δ
共有 0 条评论