码迷,mamicode.com
首页 > 其他好文 > 详细

[leedcode 54] Spiral Matrix

时间:2015-07-12 23:11:36      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:

Given a matrix of m x n elements (m rows, n columns), return all elements of the matrix in spiral order.

For example,
Given the following matrix:

[
 [ 1, 2, 3 ],
 [ 4, 5, 6 ],
 [ 7, 8, 9 ]
]

You should return [1,2,3,6,9,8,7,4,5].

public class Solution {
    //本题面试时考过,解决办法就是画图,注意边界
    List<Integer>  res;
    public List<Integer> spiralOrder(int[][] matrix) {
        res=new ArrayList<Integer>();
        if(matrix==null||matrix.length==0) return res;
        int row=matrix.length;
        int col=matrix[0].length;
        int minRow=0;
        int minCol=0;
        int maxRow=row-1;
        int maxCol=col-1;
        while(maxRow>=minRow&&maxCol>=minCol){
            print(matrix,minRow,maxRow,minCol,maxCol);
            minRow++;
            maxRow--;
            minCol++;
            maxCol--;
        }
        return res;
    }
    public void print(int[][] matrix,int minRow,int maxRow,int minCol,int maxCol){
        if(minCol<=maxCol){
            for(int i=minCol;i<=maxCol;i++){
                res.add(matrix[minRow][i]);
            }
        }
        if(minRow<maxRow){
            for(int i=minRow+1;i<=maxRow;i++){
                res.add(matrix[i][maxCol]);
            }
        }
        if(minCol<maxCol&&minRow<maxRow){
            for(int i=maxCol-1;i>=minCol;i--){
                res.add(matrix[maxRow][i]);
            }
        }
        if(minCol<maxCol&&minRow<maxRow-1){
            for(int i=maxRow-1;i>minRow;i--){
                res.add(matrix[i][minCol]);
            }
        }
        
    }
}

 

[leedcode 54] Spiral Matrix

标签:

原文地址:http://www.cnblogs.com/qiaomu/p/4641610.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!