力扣刷题记录 -- JAVA--5-----59. 螺旋矩阵 II


一、题目

在这里插入图片描述

二、代码

class Solution 
{
    public int[][] generateMatrix(int n) 
    {
            
          int [][]res = new int[n][n];
          int direction =0;//0右 1下 2左 3上 
          int max_length = n*n;
          int x = 0 ;
          int y = 0 ;
          int i = 0;
          for( i = 1 ;i<=max_length;i++)
          {
              System.out.println("x" + x  +"  y  " + y);
              if(direction==0)
              {
                  res[x][y] = i;
                  if(y+1!=n&&res[x][y+1]==0)
                  {
                     x=x;
                     y=y+1;
                  }
                  else
                  {
                      direction = 1;
                      x=x+1;
                      y=y;
                  }
              } 
              else if (direction == 1)
              {
                  res[x][y]=i;
              
                  if(x+1!=n && res[x+1][y]==0)
                  {
                      x=x+1;
                      y=y;
                  }
                  else
                  {
                      direction=2;
                      x=x;
                      y=y-1;
                  }
              }
              else if(direction == 2)
              {
                  res[x][y] = i;
                
                  if(y-1!=-1&&res[x][y-1]==0)
                  {
                      x=x;
                      y=y-1;
                  }
                  else
                  {
                      direction = 3;
                      x=x-1;
                      y=y;
                  }
              }
              else 
              {
                  res[x][y] = i;
       
                  if(x-1!=-1  && res[x-1][y]==0)
                  {
                      x=x-1;
                      y=y;
                  }
                  else
                  {
                      direction=0;
                      x=x;
                      y=y+1;
                  }
              }
          } 
      
          return res;
    }
}
}

三、运行结果

在这里插入图片描述

四、附录

二刷

class Solution 
{
    public int[][] generateMatrix(int n) 
    {
        int[][] result = new int[n][n];
        int col = 0;
        int row = 0;
        int direction = 1;
        int i =0;
        int final_num = n*n;
        for(i=1;i<=final_num;i++)
        {
            result[row][col] = i;
            if(direction==1 )
            {
               if(col+1>=n||result[row][col+1] !=0) 
               {
                    direction =2;
                    row = row+1;
               }
               else
               {
                   col = col+1;
               }
            }
            else if(direction==2 )
            {
               if(row+1>=n||result[row+1][col] !=0) 
               {
                    direction =3;
                    col = col - 1;
               }
               else
               {
                    row = row+1;
               }  
            }
            else if(direction==3 )
            {
                if(col-1<0 || result[row][col-1] !=0) 
                {
                        direction =4;
                        row = row - 1;
                }
                else
                {
                        col = col - 1;
                }  
            }
            else if(direction == 4)
            {
                if(row-1<0 || result[row-1][col] !=0) 
                {
                        direction =1;
                        col = col + 1;
                }
                else
                {
                        row = row - 1;
                } 
            }
        }
        return result;

    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

@白圭

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值