蛇形填数
Posted Aftersoon_sun
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了蛇形填数相关的知识,希望对你有一定的参考价值。
在n×n方阵里填入1,2,...,n×n,要求填成蛇形。例如,n=4时方阵为:
10 11 12 1
9 16 13 2
8 15 14 3
7 6 5 4
#include <iostream>
#include <cstring>
#include <cstdlib>
#include <cstdio>
using namespace std;
#define max 100
int aa[max][max];
int main()
{
int n;
while(cin>>n)
{
int x,y;
memset(aa,0,sizeof(aa));
int tot=aa[x=0][y=n-1]=1;
while(tot<n*n)
{
//四条while语句都是先判断,再移动
while(x+1<n&&!aa[x+1][y])
aa[++x][y]=++tot;
while(y-1>=0&&!aa[x][y-1])
aa[x][--y]=++tot;
while(x-1>=0&&!aa[x-1][y])
aa[--x][y]=++tot;
while(y+1<n&&!aa[x][y+1])
aa[x][++y]=++tot;
}
for(int i=0;i<n;i++)
{
for(int j=0;j<n;j++)
printf("%3d",aa[i][j]);
cout<<endl;
}
}
return 0;
}
以上是关于蛇形填数的主要内容,如果未能解决你的问题,请参考以下文章