在搜索螺旋矩阵时 发现没有有内及外 逆时针的code
参考大神们的神作后,修改了一下,得到有内及外的 逆时针 矩阵。
想起那句话:站在巨人的肩膀上
总之,感谢那些无私赐予我们知识的各路神仙。
#include <stdio.h>
#include <stdlib.h>
#include <iostream>
#include<iomanip>
using namespace std;
#define N 5
#define M 5
void main()
{
int a[N][M];
a[N/2][M/2]=0;
int p=1;
int raw=N/2;
int col=M/2;
for(int o=1;o<=N/2;o++)
{
int k=2*o-1;
int r=N/2+o;
int l=N/2-o;
int t=M/2-o;
int b=M/2+o;
for(int i=0;i<b-t;i++)
a[b-1-i][r]=p++;
for(int j=1;j<=r-l;j++)
a[t][r-j]=p++;
for(int z=1;z<=b-t;z++)
a[t+z][l]=p++;
for(int d=1;d<=r-l;d++)
a[b][l+d]=p++;
}
for(int i=0;i<M;i++)
for(int j=0;j<N;j++)
{
cout<<setw(3)<<a[i][j]<<' ';
if(j==M-1)
cout<<endl;;
}
system("pause");
}