给你一个 m
行 n
列的矩阵 matrix
,请按照 顺时针螺旋顺序 ,返回矩阵中的所有元素。
示例 1:
**输入:** matrix = [[1,2,3],[4,5,6],[7,8,9]]
**输出:** [1,2,3,6,9,8,7,4,5]
示例 2:
**输入:** matrix = [[1,2,3,4],[5,6,7,8],[9,10,11,12]]
**输出:** [1,2,3,4,8,12,11,10,9,5,6,7]
提示:
m == matrix.length
n == matrix[i].length
1 <= m, n <= 10
-100 <= matrix[i][j] <= 100
思路:看做上下左右4层,按层输出
class Solution {
public List<Integer> spiralOrder(int[][] matrix) {
List<Integer> ans=new ArrayList<Integer>();
int left=0,top=0;
int right=matrix[0].length-1,bottom=matrix.length-1;
while(left<=right&&top<=bottom){
//上面一层
for(int j=left;j<=right;j++)
ans.add(matrix[top][j]);
top++;
//避免最后一层重复输出
if(top>bottom) break;
//右侧一层
for(int j=top;j<=bottom;j++)
ans.add(matrix[j][right]);
right--;
//避免最后一层重复输出
if(left>right) break;
//下面一层
for(int j=right;j>=left;j--)
ans.add(matrix[bottom][j]);
bottom--;
//避免最后一层重复输出
if(top>bottom) break;
for(int j=bottom;j>=top;j--)
ans.add(matrix[j][left]);
left++;
}
return ans;
}
}