这是我到目前为止的代码。我认为它与checkdiag2函数本身有关,因为我看到程序分步运行,并且从未执行过最后的'if'语句。我不知道为什么。这是无效条件吗?之前,我尝试使用被分配反对角线第一个值的i进行尝试。
#include <stdio.h>
#include <stdlib.h>
int checkdiag2 (int **m, int size);
int
main(void)
{
int i, j, dim, result;
int **arr;
FILE *in;
in = fopen("matrix3.txt", "r");
fscanf(in, "%d", &dim);
arr = (int**) calloc(dim, sizeof(int*));
for (i=0; i<dim; ++i)
arr[i] = (int*) calloc(dim, sizeof(int));
for (i=0; i<dim; ++i)
for (j=0; j<dim; ++j)
fscanf(in, "%d", &arr[i][j]);
result = checkdiag2(arr, dim);
if (result == 1)
printf("The matrix is %dx%d and all the numbers on the antidiagonal are the same", dim, dim);
else
printf("The matrix is %dx%d and all the numbers on the antidiagonal are NOT the same", dim, dim);
for (i=0; i<dim; ++i)
free(arr[i]);
free(arr);
return(0);
}
int checkdiag2 (int **m, int size)
{
int i, j, count=0;
i = m[0][size];
for (i=0; i<size; ++i)
for (j=0; j<size; ++j)
if ((i+j)==size)
if(m[i][j]==m[0][size])
count=count+1;
if (count==size)
return(1);
else
return(0);
}
我正在使用的文件中的数据是
88 9 4 5 6 7 8 58 8 4 5 6 7 5 58 9 8 5 6 5 5 58 9 4 8 5 5 8 58 9 4 5 8 7 8 58 9 5 5 6 8 8 48 5 4 5 6 7 8 45 9 4 5 6 7 8 8
结果打印出反对角线不一样。
最佳答案
C中的数组索引从0开始;因此,如果您的矩阵是NxN,则反对角线上任何元素的索引总和为N-1,而不是N。
关于c - 如何检查矩阵反对角线上的项是否相同?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/49848628/