题解
2023-08-08 15:40:25
发布于:浙江
26阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main(){
int n ,x ,y ,tot;
cin >> n;
int lst[n][n] = {};
tot = lst[x = 0][y = n - 1] = 1;
while (tot < pow(n ,2)){ //利用x和y两个指针来改变二维数组中的值
while (x + 1 < n && !lst[x + 1][y])
lst[++x][y] = ++tot;
while (y - 1 >= 0 && !lst[x][y - 1])
lst[x][--y] = ++tot;
while (x - 1 >= 0 && !lst[x - 1][y])
lst[--x][y] = ++tot;
while (y + 1 < n && !lst[x][y + 1])
lst[x][++y] = ++tot;
}
for (int i = n - 1 ; i >= 0 ; i--){ //输出矩阵,翻转90°
for (int j = 0; j < n ; j++){
cout << lst[j][i] << " ";
}
cout << "\n";
}
return 0;
}
这里空空如也
有帮助,赞一个