public class Solution { Map<Integer,Node> cache = new HashMap<>(); public int capacity; public int size; public Node head; public Node tail; public int[] LRU (int[][] operators, int k){ capacity = k; size = 0; head = new Node(); tail = new Node(); head.next = tail; ...