题目
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 ]
]
分析
使用上题同样的思路:http://www.jianshu.com/p/95f8ed55903b
在上题螺旋记录数据的地方改为数组的赋值即可。
这里使用的4个方向的判断中,可以使用循环,直到该方向完成才结束,速度应该更快一点,不过所有的提交代码运行时间都一样。
/**
* Return an array of arrays.
* Note: The returned array must be malloced, assume caller calls free().
*/
int** generateMatrix(int n) {
int **ans=(int **)malloc(sizeof(int *)*n);
if(n==0)return ans;
for(int i=0;i2->3->4->1
int r=0,c=0;//当前旋转到的位置
int num=0;
ans[0][0]=1;
while(numcircle)
{
ans[r][c]=num+1;
c--;
num++;
}
else if(c==circle)
{
ans[r][c]=num+1;
r--;
p=4;
num++;
}
}
else
{
if(r>circle+1)
{
ans[r][c]=num+1;
r--;
num++;
}
else if(r==circle+1)
{
ans[r][c]=num+1;
c++;
num++;
p=1;
circle++;
}
}
}
return ans;
}