import java.util.*; public class Solution { public ArrayList<Integer> maxInWindows(int [] num, int size) { Deque<Integer> que = new LinkedLis...