LFU缓存节点类,继承自双向链表节点 LFU Cache Node class, extends Doubly Linked List Node
键的类型,必须是对象键类型(string | number | symbol) Type of key, must be object key type (string | number | symbol)
值的类型 Type of value
节点的访问频率 Access frequency of the node
缓存节点的键 Key of the cache node
Optional
指向链表中后一个节点的引用
指向链表中前一个节点的引用
节点存储的值
LFU缓存节点类,继承自双向链表节点 LFU Cache Node class, extends Doubly Linked List Node