HzuWHF


私信TA

用户名:I7I08I9047

访问量:83350

签 名:

我RUN了

等  级
排  名 19
经  验 21266
参赛次数 13
文章发表 127
年  龄 3
在职情况 学生
学  校 贺州学院
专  业

  自我简介:

解题思路:

        

参考代码:

#include<bits/stdc++.h>
using namespace std;

int main() {
	int arr[103][103], num;
	while (cin >> num) {
		memset(arr, 0, sizeof(arr));
		int step = 1, posx = 0, posy = num - 1;

		while (step < num * num) {
			while (posx + 1 < num && !arr[posx + 1][posy])
				arr[posx++][posy] = step++;
			while (posy - 1 >= 0  && !arr[posx][posy - 1])
				arr[posx][posy--] = step++;
			while (posx - 1 >= 0  && !arr[posx - 1][posy])
				arr[posx--][posy] = step++;
			while (posy + 1 < num && !arr[posx][posy + 1])
				arr[posx][posy++] = step++;
		}
		arr[posx][posy] = step;

		for (int i1 = 0; i1 < num; i1++) {
			for (int i2 = 0; i2 < num; i2++) {
				cout << arr[i1][i2];
				if (i2 != num - 1)cout << ' ';
			}
			cout << endl;
		}
		cout << endl;
	}
}


 

0.0分

4 人评分

  评论区

  • «
  • »