从文件中读取二维

从文件中读取二维

我写了一个代码从文件中读取二维整数数组,第一行给出了维度。运行它时,会出现以下错误:
*“./shell”中有错误:double free或corruption(out):0x000000000144a0c0*
中止(核心转储)
这是我的密码

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


int main(int argc , char* argv[])
{
FILE * fp;
char * line = NULL;
char * token ;
size_t len = 0;
ssize_t read;
int i;
int j ;
int flag = 0 ;
int row = 0 ;
int **matr ;
char cwd[1024];

getcwd(cwd, sizeof(cwd)) ;
char *matrix = malloc(strlen(cwd)+10);
// here but your file name

asprintf(&matrix,"%s%s",cwd,"/matrix");

fp = fopen(matrix, "r");
if (fp == NULL)
{
    exit(EXIT_FAILURE);
}

while ((read = getline(&line, &len, fp)) != -1)
{

    if(flag == 0)
    {
        token = strtok (line," ");
        i = atoi(token);
        token = strtok (NULL, " ");
        if (token != NULL)
        {
            j = atoi(token);

        }
        printf("%d   %d\n",i,j);
        flag =1 ;
        matr = (int**)malloc(i*sizeof(int*));
        int e ;
        for(e=0; e<=i; e++)
        {
            matr[e] = (int*)malloc(j*sizeof(int));
        }
    }

    else if(row <i)
    {
        int col = 0 ;
        token = strtok (line,"\t");
        while (token != NULL && col<j)
        {
            matr[row][col] = atoi(token);
            printf("%d ",matr[row][col]);
            col++ ;
            token = strtok (NULL,"\t");
        }
        printf("\n");
        row++ ;
    }

  }

fclose(fp);
return 0;
}

有什么解决办法吗?

最佳答案

发布的代码存在不可恢复的内存泄漏。
通过调用malloc()函数将指针设置为指向某个分配的内存,
然后指针被对asprintf()的调用覆盖,建议使用sprintf()或将对matrix的调用替换为malloc()

关于c - 从文件中读取二维数组,并在第一行中给出尺寸,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33441371/

10-10 17:01