zoukankan      html  css  js  c++  java
  • 59. Spiral Matrix II

    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 ]
    ]
    

     和spiral matrix1很像,代码如下:

    public class Solution {

        public int[][] generateMatrix(int n) {

            int[][] res=  new int[n][n];

            if(n==0) return res;

            if(n==1){

                res[0][0] = 1;

                return res;

            }

            int rowbegin = 0;

            int rowend = n-1;

            int colbegin = 0;

            int colend = n-1;

            int num = 1;

            while(true){

                for(int i=colbegin;i<=colend;i++){

                    res[rowbegin][i] = num++;

                }

                rowbegin++;

                if(rowbegin>rowend) break;

                for(int i=rowbegin;i<=rowend;i++){

                    res[i][colend] = num++;

                }

                colend--;

                if(colbegin>colend) break;

                for(int i=colend;i>=colbegin;i--){

                    res[rowend][i] = num++;

                }

                rowend--;

                if(rowbegin>rowend) break;

                for(int i=rowend;i>=rowbegin;i--){

                    res[i][colbegin] = num++;

                }

                colbegin++;

                if(colbegin>colend) break;

            }

            return res;

        }

    }

  • 相关阅读:
    18、排序算法-快速排序
    centos7.x 端口映射
    SpringBoot多环境分离resources和lib进行打包
    Java枚举储存的一种索引实现方式
    Maven项目pom文件设置JDK版本
    Java提取URL某个参数的值
    使用正则替换script及其内容
    Oracle设置主键自增
    Maven配置ojdbc14-10.2.0.4.0.jar
    使用maven生成可执行jar包(包含依赖)
  • 原文地址:https://www.cnblogs.com/codeskiller/p/6363922.html
Copyright © 2011-2022 走看看