[n][n]
1 と 0 のみを含む2D マトリックスを想定します。任意の行のすべての 1 は、0 の前に来る必要があります。任意の行の 1 の数はi
、少なくとも 1 の行の no である必要があります(i+1)
。方法を見つけて、2D 行列で 1 の数を数える ac プログラムを書きます。アルゴリズムの複雑さは O(n) である必要があります。
質問はコーメンのアルゴリズムブックからのもので、以下はこの問題に対する私の実装です。私のアルゴリズムの間違いを親切に指摘してください。また、より良い方法を提案してください。ありがとう!
#include <stdio.h>
#include <stdlib.h>
int **map;
int getMatrix();
main()
{
int n,i,j,t;
j=0;
n=getMatrix();
i=n-1;
int sum[n];
for(t=0;t<n;t++)
sum[t]=0;
int count=0;
while ( (i>=0) && (j<n) )
{
if ( map[i][j] == 1 )
{
j++;
count=count+1;
}
else
{
if (i==(n-1))
{
sum[i]=count;
count=0;
i--;
}
else
{
sum[i]=sum[i+1]+count;
count=0;
i--;
}
}
}
for (t=0;t<n;t++)
{
if ((t==(n-1)) && (sum[t]==0))
sum[t]=0;
else if ((sum[t]==0) && (sum[t+1]>0))
sum[t]=sum[t+1];
}
int s=0;
for (t=0;t<n;t++)
s=s+sum[t];
printf("\nThe No of 1's in the given matrix is %d \n" ,s);
}
int getMatrix()
{
FILE *input=fopen("matrix.txt","r");
char c;
int nVer=0,i,j;
while((c=getc(input))!='\n')
if(c>='0' && c<='9')
nVer++;
map=malloc(nVer*sizeof(int*));
rewind(input);
for(i=0;i<nVer;i++)
{
map[i]=malloc(nVer*sizeof(int));
for(j=0;j<nVer;j++)
{
do
{
c=getc(input);
}while(!(c>='0' && c<='9'));
map[i][j]=c-'0';
}
}
fclose(input);
return nVer;
}