package main /** * lru design * @param operators int整型二维数组 the ops * @param k int整型 the k * @return int整型一维数组 */ type LRUStruct struct { Size int Capacity int Cache map[int]*NodeList Head, Tail *NodeList } type NodeList struct { Key, Value int Prev, Next *NodeList } fu...