奇数の行と列でのみ機能するアルゴリズムがあります。
- 1 行目の真ん中に 1 を入れる
- 1 セル上に移動し、1 セル左に移動します (循環行列を考慮する必要があります)。
- このセルに増加する数値を入力します
- n^2 に達している限り、ステップ 2 に進みます
このための C++ コードを次に示します。
#include <iostream>
#include <iomanip>
#define For(i,n) for(int i=0; i<n; i++)
#define FOR(i,j,n) for(int i=0; i<n; i++) for(int j=0; j<n; j++)
using namespace std;
void print(int**, int);
void calc(int**, int);
void test(int**, int);
int main()
{
int n;
a:cout<<"Enter an odd number:";
cin>>n;
if (n % 2 == 0)
{
cout<<"You entered an even number!\n\n";
goto a;
}
int** ary = new int*[n];
For(i,n)
ary[i] = new int[n];
//Fill array entires with NULL
FOR(i,j,n)
ary[i][j] = NULL;
calc(ary,n);
print(ary,n);
test(ary,n);
cin>>n;
}
void print(int** ary, int n)
{
cout<<endl;
For(i,n)
{
For(j,n)
{
if (ary[i][j] == NULL) {cout<<"N "; continue;}
cout<<setw(4)<<ary[i][j];
}
cout<<endl;
}
}
void calc(int** ary, int n)
{
int c=1, i=0, j=n/2;
while(true)
{
if (ary[i][j] == NULL) ary[i][j] = c++;
else
{
j++;
i+=2;
if (j == n) j = 0;
if (i == n) i = 0;
else if (i == n+1) i = 1;
continue;
}
//cout<<"Filled ary["<<i<<"]["<<j<<"]\n";
i--;
j--;
if (i < 0) i = n-1;
if (j < 0) j = n-1;
if (c> n*n) break;
}
}
void test(int** ary, int n)
{
cout<<"\nTesting Sums. . .";
int rSum = 0, cSum = 0, mDiagSum = 0, sDiagSum = 0;
For(i,n)
{
For(j,n)
{
rSum += ary[i][j];
cSum += ary[j][i];
if (i == j) mDiagSum +=ary[i][j];
if (n - 1 == i + j) sDiagSum += ary[i][j];
}
cout<<"\nSum of row #"<<i+1<<"= "<<rSum
<<"\nSum of Column #"<<i+1<<"= "<<cSum;
rSum = 0;
cSum = 0;
}
cout<<"\nSum of main diagonal= "<<mDiagSum
<<"\nSum of sub diagonal= "<<sDiagSum<<endl;
}