[leetcode-59-Spiral Matrix II]
Posted hellowOOOrld
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[leetcode-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 ]
]
思路:
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]的主要内容,如果未能解决你的问题,请参考以下文章
[LeetCode]59. Spiral Matrix II