摘要: 一、OrderedDict 1 class LRUCache: 2 def __init__(self, capacity: int): 3 from collections import OrderedDict 4 self.cap = capacity 5 self.dic = OrderedD 阅读全文
posted @ 2020-03-25 21:01 LinBupt 阅读(172) 评论(0) 推荐(0) 编辑