public class Solution { /** * lru design * @param operators int整型二维数组 the ops * @param k int整型 the k * @return int整型一维数组 */ public Map.Entry<Integer,Integer> getHead(LinkedHashMap map) { return (Map.Entry<Integer,Integer>)map.entrySet().iterator()...