无法使用函数修改矩阵元素的值

发布于 2025-01-11 12:41:29 字数 2351 浏览 0 评论 0原文

我正在尝试创建一个函数,将可被 i 和 j 整除的每个矩阵元素 a[i][j] 的值设置为 0。我尝试这样做,但程序只是“退出”,在 matrix=editMat(matrix, nrows, ncols); 行之后没有给出任何错误或警告。

#include <stdio.h>
#include <stdlib.h>


FILE *openFileR(const char *);
int rows(FILE *);
int cols(FILE *);
int **readMat(FILE *, int **);
int **allocMat(int, int);
void printMat(int **, int, int);
int **editMat(int, int, int**);

int main()
{
    FILE *fp, *fpout;
    fp=openFileR("matrixmag.txt");
    int nrows=rows(fp); int ncols=cols(fp);
    int **matrix=allocMat(nrows, ncols);
    readMat(fp, matrix);
    printMat(matrix, nrows, ncols);
    matrix=editMat(nrows, ncols, matrix);
    printMat(matrix, nrows, ncols);
    return 0;
}
int **editMat(int nrows, int ncols, int **matrix )
{
    int i, j;
    for(i=0; i<nrows; i++)
    {
        for(j=0; j<ncols; j++)
        {
            if((matrix[i][j])%i==0 && (matrix[i][j])%j==0)
            {
            matrix[i][j]=0;
            }
        }
    }
    return matrix;
}



int **readMat(FILE *fp, int **matrix)
{
    int value, row, col;

    while(fscanf(fp, "%d %d %d", &value, &row, &col)!=EOF)
    {
        matrix[row][col]=value; 
    }
    return matrix;
}

int **allocMat(int nrows, int ncols)
{
    int **matrix=malloc(nrows*(sizeof(int *)));
    for(int i=0; i<nrows; i++)
    {
        matrix[i]=malloc(ncols*sizeof(int));
    }
    return matrix;
}

void printMat(int **matrix, int nrows, int ncols)
{
    for(int i=0; i<nrows; i++)
    {
        for(int j=0; j<ncols; j++)
        {
            printf("%d ", matrix[i][j]);
        }
        printf("\n");
    }
}

int cols(FILE *fp)
{
    int columns;
    fscanf(fp, "%d", &columns);
    printf("Columns:%d\n", columns);
    return columns;
}

int rows(FILE *fp)
{
    int lines;
    fscanf(fp,"%d", &lines);
    printf("Rows:%d\n", lines);
    return lines;
}

FILE *openFileR(const char *nome_file)
{
    FILE *fp;
    printf("File name: %s\n", nome_file);
    fp=fopen(nome_file, "r");
    if(fp==NULL)
    {
        printf("Couldn't open file\n");
        exit(-1);
    }
    else
    printf("File correctly opened\n");
    return fp;
}

输入文件

3   3
2   0   0
7   0   1
6   0   2 
9   1   0
5   1   1
1   1   2
4   2   0
3   2   1
8   2   2

对错误感到抱歉,我没有检查我之前写的内容

i'm trying to create a function that sets to 0 the value of every matrix element a[i][j] which is divisible by both i and j. I tried to do it this way but the program just "exits" without giving any error or warning after the matrix=editMat(matrix, nrows, ncols); line.

#include <stdio.h>
#include <stdlib.h>


FILE *openFileR(const char *);
int rows(FILE *);
int cols(FILE *);
int **readMat(FILE *, int **);
int **allocMat(int, int);
void printMat(int **, int, int);
int **editMat(int, int, int**);

int main()
{
    FILE *fp, *fpout;
    fp=openFileR("matrixmag.txt");
    int nrows=rows(fp); int ncols=cols(fp);
    int **matrix=allocMat(nrows, ncols);
    readMat(fp, matrix);
    printMat(matrix, nrows, ncols);
    matrix=editMat(nrows, ncols, matrix);
    printMat(matrix, nrows, ncols);
    return 0;
}
int **editMat(int nrows, int ncols, int **matrix )
{
    int i, j;
    for(i=0; i<nrows; i++)
    {
        for(j=0; j<ncols; j++)
        {
            if((matrix[i][j])%i==0 && (matrix[i][j])%j==0)
            {
            matrix[i][j]=0;
            }
        }
    }
    return matrix;
}



int **readMat(FILE *fp, int **matrix)
{
    int value, row, col;

    while(fscanf(fp, "%d %d %d", &value, &row, &col)!=EOF)
    {
        matrix[row][col]=value; 
    }
    return matrix;
}

int **allocMat(int nrows, int ncols)
{
    int **matrix=malloc(nrows*(sizeof(int *)));
    for(int i=0; i<nrows; i++)
    {
        matrix[i]=malloc(ncols*sizeof(int));
    }
    return matrix;
}

void printMat(int **matrix, int nrows, int ncols)
{
    for(int i=0; i<nrows; i++)
    {
        for(int j=0; j<ncols; j++)
        {
            printf("%d ", matrix[i][j]);
        }
        printf("\n");
    }
}

int cols(FILE *fp)
{
    int columns;
    fscanf(fp, "%d", &columns);
    printf("Columns:%d\n", columns);
    return columns;
}

int rows(FILE *fp)
{
    int lines;
    fscanf(fp,"%d", &lines);
    printf("Rows:%d\n", lines);
    return lines;
}

FILE *openFileR(const char *nome_file)
{
    FILE *fp;
    printf("File name: %s\n", nome_file);
    fp=fopen(nome_file, "r");
    if(fp==NULL)
    {
        printf("Couldn't open file\n");
        exit(-1);
    }
    else
    printf("File correctly opened\n");
    return fp;
}

Input file is

3   3
2   0   0
7   0   1
6   0   2 
9   1   0
5   1   1
1   1   2
4   2   0
3   2   1
8   2   2

sorry about the errors, i didn't check what i wrote before

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

作妖 2025-01-18 12:41:29

刚刚发现我试图将一个数字除以 0,因为 i 和 j 都初始化为 0

int **editMat(int nrows, int ncols, int **matrix )
{
    int i, j;
    for(i=0; i<nrows; i++)
    {
        for(j=0; j<ncols; j++)
        {
            if((matrix[i][j])%i==0 && (matrix[i][j])%j==0)
            {
            matrix[i][j]=0;
            }
        }
    }
    return matrix;
}

这样就可以正常工作,

int **editMat(int nrows, int ncols, int **matrix )
{
    int i, j;
    for(i=1; i<nrows; i++)
    {
        for(j=1; j<ncols; j++)
        {
            if((matrix[i][j])%i==0 && (matrix[i][j])%j==0)
            {
            matrix[i][j]=0;
            }
        }
    }
    return matrix;
}

无论如何还是谢谢大家的帮助:)

Just figured out i was trying to divide a number by 0, since i and j were both initialized to 0

int **editMat(int nrows, int ncols, int **matrix )
{
    int i, j;
    for(i=0; i<nrows; i++)
    {
        for(j=0; j<ncols; j++)
        {
            if((matrix[i][j])%i==0 && (matrix[i][j])%j==0)
            {
            matrix[i][j]=0;
            }
        }
    }
    return matrix;
}

This way it works fine

int **editMat(int nrows, int ncols, int **matrix )
{
    int i, j;
    for(i=1; i<nrows; i++)
    {
        for(j=1; j<ncols; j++)
        {
            if((matrix[i][j])%i==0 && (matrix[i][j])%j==0)
            {
            matrix[i][j]=0;
            }
        }
    }
    return matrix;
}

Thanks everybody for the help anyway :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文