import java.util.*; public class Solution { public ArrayList<Integer> spiralOrder (int[][] matrix) { // write code here ArrayList<Integer> res = new ArrayList<>(); if(matrix.length == 0) return res; // 定义四个指针,并且充当边界限制的作用 int...