首页 > 其他 > 详细

[leetcode-59-Spiral Matrix II]

时间:2017-06-01 21:22:16      阅读:321      评论:0      收藏:0      [点我收藏+]

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

思路:

4个方向变量上下左右控制边界。

vector<vector<int>> generateMatrix(int n) {
            
         vector<vector<int>>matrix(n,vector<int>(n,0));
         int up = 0, down = n - 1, left = 0, right = n - 1 ,k =1;
         while (1)
         {
             for (int col = left; col <= right; col++)matrix[up][col] = k++;
             if (++up>down)break;
             for (int row = up; row <= down; row++)matrix[row][right] = k++;
             if (--right < left)break;
             for (int col = right; col >= left; col--)matrix[down][col] = k++;
             if (--down < up)break;
             for (int row = down; row >= up; row--)matrix[row][left] = k++;
             if (++left>right)break;
         }
         return matrix; 
    }

 

[leetcode-59-Spiral Matrix II]

原文:http://www.cnblogs.com/hellowooorld/p/6930727.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!