摘要: public class LruCached<K, V> { class Node<K, V> { K key; V value; Node<K, V> pre; Node<K, V> next; public Node() { this.next = this.pre = null; } publ 阅读全文
posted @ 2021-09-03 13:56 紫川先生 阅读(55) 评论(0) 推荐(0) 编辑