蛇形填数(算法竞赛入门经典)

痞子三分冷 提交于 2020-03-27 02:01:02
#include<iostream>
#include<vector>
#include<algorithm>
#define max 20
using namespace std;
int a[max][max];
int main()
{
	int x, y, n, tot = 0;
	cin >> n;
	memset(a, 0, sizeof(a));
	tot = a[x = 0][y = n - 1] = 1;
	while (tot<n*n)
	{
		while (x + 1 < n&&!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&&!a[x][y + 1]) a[x][++y] = ++tot;

	}
	for (int i = 0; i < n; i++)
	{
		for (int j = 0; j < n; j++)
		{
			cout << a[i][j] << " ";
		}
		cout << endl;
	}
	
	system("pause");
	return 0;
}

  

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!