欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

蛇形填数 n×n方形

程序员文章站 2024-03-22 18:34:16
...

题目初接触于《算法竞赛入门经典(第2版)》P40 程序3-3
当时刚接触C++和算法世界的我硬着头皮啃懂了,整理在txt文档中,现再次整理回顾。

#include<iostream>
#include<string.h>
using namespace std;

#define maxn 10
int a[maxn][maxn];

int main()
{
    int n,x,y,tot;
    cin>>n;
    memset(a,0,sizeof(a));
    tot=a[x=0][y=n-1]=1;
    while(tot<n*n){
        while(x+1<=n-1&&!a[x+1][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+1<=n-1&&!a[x][y+1]) a[x][++y]=++tot;
    }
    for(int x=0;x<=n-1;x++){
        for(int y=0;y<=n-1;y++)
            cout<<a[x][y]<<" ";
            if(y=n-1) cout<<endl;
    }
    return 0;
}

运行结果:
6
16 17 18 19 20 1
15 30 31 32 21 2
14 29 36 33 22 3
13 28 35 34 23 4
12 27 26 25 24 5
11 10 9 8 7 6

Process returned 0 (0x0) execution time : 2.600 s
Press any key to continue.

相关标签: 算法积累