蓝桥杯——蛇形填数

蛇形填数

描述在n*n方陈里填入1,2,...,n*n,要求填成蛇形。例如n=4时方陈为:
10 11 12 1
9 16 13 2
8 15 14 3
7 6 5 4
输入
直接输入方陈的维数,即n的值。(n<=100)
输出
输出结果是蛇形方陈。
样例输入
3
样例输出
7 8 1
6 9 2
5 4 3

#include      
#include
#include       //memset(a,0,size(a));
#include
using namespace std;    
int main()
{
int a[100][100];
int n;
int x,y;
int count;
int i,j;
scanf("%d",&n);
// cin>>n;
memset(a,0,sizeof(a));
count=a[x=0][y=n-1]=1;
while(count

{  

                   //注意轮询的起始和条件

while(x+1 a[++x][y]=++count;      //从一开始  右下依次增大   
while(y-1>=0&&a[x][y-1]==0) a[x][--y]=++count;        //往左依次增大
while(x-1>=0&&a[x-1][y]==0) a[--x][y]=++count;        //左上依次增大
while(y+1 a[x][++y]=++count;      // 往右依次增大
}
for(i=0;i for(j=0;j {
printf("%d ",a[i][j]);
if(j==n-1)
printf("\n");

/* for(x=0;x for(y=0;y            cout<        }
        cout<    }*/
return 0;
}


你可能感兴趣的:(算法类小题&比赛)