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

Spiral Matrix II

时间:2014-10-15 12:36:40      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:style   color   io   ar   java   for   sp   div   on   

Given an integer n, generate a square matrix filled with elements from 1 to n2 in spiral order.

For example,
Given n = 3,

You should return the following matrix:
[
 [ 1, 2, 3 ],
 [ 8, 9, 4 ],
 [ 7, 6, 5 ]
]

答案

public class Solution {
    public int[][] generateMatrix(int n) {
        if(n<0)
        {
            return null;
        }
        int [][]matrix=new int[n][n];
        int up=0;
        int down=n-1;
        int left=0;
        int right=n-1;
        int row=0;
        int col=0;
        int currentValue=1;
        while(true)
        {
            //向右
            for(col=left;col<=right;col++)
            {
                matrix[row][col]=currentValue++;
            }
            up++;
            if(up>down)
            {
                break;
            }
            col--;
            //向下
            for(row=up;row<=down;row++)
            {
                matrix[row][col]=currentValue++;
            }
            right--;
            if(left>right)
            {
                break;
            }
            row--;
            //向左
            for(col=right;col>=left;col--)
            {
                matrix[row][col]=currentValue++;
            }
            down--;
            if(up>down)
            {
                break;
            }
            col++;
            //向上
            for(row=down;row>=up;row--)
            {
                matrix[row][col]=currentValue++;
            }
            left++;
            if(left>right)
            {
                break;
            }
            row++;
        }
        return matrix;
    }
}


Spiral Matrix II

标签:style   color   io   ar   java   for   sp   div   on   

原文地址:http://blog.csdn.net/jiewuyou/article/details/40106341

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