蛇形填数 P39

在n*n方阵里填入1,2,...n*n,要求填成蛇形。如下

10 11 12 1
9 16 13 2
8 15 14 3
7 6 5 4

【分析】

用四个while循环模拟四个方向,做好边界判断和非零判断。

#include<stdio.h>
#include<string.h>
const int maxn=20;
int a[maxn][maxn];
int main()
{
	int n=0,x=0,y=0;
	int tot=0;
	scanf("%d",&n);
	memset(a,0,sizeof(a));
	tot=a[x=0][y=n-1]=1;
	while(tot<n*n)
	{
		while(x<n-1&&!a[x+1][y]) a[++x][y]=++tot;
		while(y>0&&!a[x][y-1])	 a[x][--y]=++tot; 
		while(x>0&&!a[x-1][y])   a[--x][y]=++tot;
		while(y<n-1&&!a[x][y+1]) a[x][++y]=++tot;
	}
	for(x=0;x<n;x++)
	{
		for(y=0;y<n;y++)
			printf("%3d",a[x][y]);
		printf("\n");
	}
	return 0;
}

猜你喜欢

转载自blog.csdn.net/scqlovezy/article/details/82787338