//就是每次将上行,右列,下行,左列 都加进去 让list去重 ,然后top++ ; right -- ,bottom-- ,left++, 直到top > bottom 或者 left > right 时退出循环就ok了(简单易懂~~~) ArrayList<Integer> list = new ArrayList<>(); int top = 0 ; int bottom = matrix.length-1; int left = 0; int rig...