摘要: 1 class LRUCache{ 2 private: 3 int max_size; 4 unordered_map >::iterator> hash; 5 list > lru_stack; 6 public: 7 LRUCache(int capacity... 阅读全文
posted @ 2014-04-02 22:29 卖程序的小歪 阅读(186) 评论(0) 推荐(0) 编辑