题解 | #螺旋矩阵#

螺旋矩阵

http://www.nowcoder.com/practice/7edf70f2d29c4b599693dc3aaeea1d31

import java.util.*;

public class Solution {
    public ArrayList<Integer> spiralOrder(int[][] matrix) {
        ArrayList<Integer> arr = new ArrayList<Integer>();
        if(matrix.length == 0) return arr;
        int top = 0;
        int left = 0;
        int right = matrix[0].length - 1;
        int bottom = matrix.length - 1;
        while(left <= right && top <= bottom){
            for(int col = left; col <= right; col++){
                arr.add(matrix[top][col]);
            }
            if(++top > bottom) break;
            for(int row = top; row <= bottom; row++){
                arr.add(matrix[row][right]);
            }
            if(--right < left) break;
            for(int col = right; col >= left; col--){
                arr.add(matrix[bottom][col]);
            }
            if(--bottom < top) break;

            for(int row = bottom; row >= top; row--){
                arr.add(matrix[row][left]);
            }
            if(++left > right) break;
        }
        return arr;
    }
}
全部评论

相关推荐

不愿透露姓名的神秘牛友
11-26 16:06
已编辑
快手电商 后端 23k-35k
点赞 评论 收藏
分享
11-04 14:10
东南大学 Java
_可乐多加冰_:去市公司包卖卡的
点赞 评论 收藏
分享
不愿透露姓名的神秘牛友
10-05 10:13
已编辑
HHHHaos:让这些老登来现在秋招一下,简历都过不去
点赞 评论 收藏
分享
评论
点赞
1
分享
牛客网
牛客企业服务