搜索资源列表
用c编写的N*N的螺旋矩阵源代码
- /* 实现效果: 1 2 6 7 15 3 5 8 14 16 4 9 13 17 22 10 12 18 21 23 11 19 20 24 25 */ #include <stdio.h> #define N 5 //阶数,即N*N的螺旋矩阵 void main() { int i, j, num=1, a[N][N]; for(i=0; i<=N/2; i++) &nb
shuzijuzhen
- 数字矩阵,N的平方个数字,从一到N的平方,螺旋状打印-Figure matrix, N the square of a figure, from 1 to N of the square, spiral print
rotate
- 输入一个自然数N(2≤N≤9),要求输出如下的螺旋矩阵,即边长为N*N,元素取值为1至N*N,1在左上角,呈顺时针方向依次放置各元素。 N=3时,相应的矩阵中每个数字位置如下图所示: 1 2 3 8 9 4 7 6 5-Enter a natural number N (2 ≤ N ≤ 9), the requirements are as follows spiral output matrix, that is, edge length of N*
Spiral_Matrix
- 螺旋矩阵:产生指定大小N的螺旋N*N矩阵 最好是小于15*15 的 这样看起来会直观一些-Spiral Matrix: have specified the size N of the N* N matrix spiral preferably less than 15* 15 of this appears to be some intuitive
slxjz
- 双螺旋矩阵的定义如下,矩阵的最中心是1,往上是2,右拐3,向下4,然后依次5、6,7...构成一条顺序增大的螺旋线,此外,如果从中心往下走的话,也是一条对称的螺旋线。题目是给定一个矩阵维度N,将其打印出来 -Double helix is defined as the matrix, the matrix is 1, up 2, right 3, down 4, to be followed by a sequence 5,6,7 ... constitute the helix incre
Cpp1
- 输入一个n,输出一个n行n列的,螺旋形增加的1~n^2的矩阵-Spiral matrix