关于FIFO 淘汰缓存时,把最先进入链表的结点淘汰掉。 具体实现(Python) (代码中引进的双向链表内容请查看-->https://blog.csdn.net/huanglei305/article/details/99422314) # -*- encoding=utf-8 -*- from computer_principle.DoubleLinkedList import DoubleLinkedList, Node class FIFOCache(object): def __init__(self, capacity): self.c...