算法竞赛入门经典第二版 蛇形填数 P40

#include
using namespace std;
#define maxn 20
int a[maxn][maxn]; 
int main(){
    int n,x,y,tot=0;
    cin>>n;
    memset(a,0,sizeof(a));
    tot=a[x=0][y=n-1]=1;
    while(totn){
        while(x+11][y])  a[++x][y]=++tot;
        while(y-1>=0&&!a[x][y-1])  a[x][--y]=++tot;
        while(x-1>=0&&!a[x-1][y])  a[--x][y]=++tot;
        while(y+11])  a[x][++y]=++tot;  //先相加再运行 
    }
    for(x=0;x)
        {for(y=0;y)
            printf("%3d",a[x][y]);
        printf("\n");}
    return 0;
} 

 

你可能感兴趣的:(算法竞赛入门经典第二版 蛇形填数 P40)