在二维数组中赋值



我试图将CSV文件解析为c中的2D数组。我想制作一个具有结构的矩阵:

typedef struct {
    int row;
    int col;
    float **arr;
    int numElements;
} Matrix;

我使用的函数接受动态分配的二维浮点数数组,并返回。我正在使用fgets读取值,使用strtok对逗号之间的每个值进行标记,然后使用strtof转换返回的字符串。

首先,我动态地制作了2D数组,然后将它们传递给函数,以便用值填充,

RMatrix->arr = make2DArray(RMatrix->row, RMatrix->col);
    VMatrix->arr = make2DArray(VMatrix->row, VMatrix->col);
    printf("RMatrix->arr : %p n", RMatrix->arr);
    printf("VMatrix->arr : %p n", VMatrix->arr);
    parseCSV(fpRMatrix, RMatrix->arr, RMatrix->row, RMatrix->col, &(RMatrix->numElements), INPUT_LENGTH);
    printf("RMatrix parsedn");
    parseCSV(fpVMatrix, VMatrix->arr, VMatrix->row, VMatrix->col, &(VMatrix->numElements), INPUT_LENGTH);
    printf("VMatrix parsedn");

下面是函数:

void parseCSV(FILE *fp, float **output, int row, int col, int *numElements ,int inputLength)
{
    char *buffer;
    int rowArr = 0;
    printf("Output : %p n", output);
    buffer = (char*) malloc(inputLength * sizeof(char));
    while(fgets(buffer, inputLength, fp)) {
        char *p =strtok(buffer,",");
        int colArr = 0;         
        float check = 0;
        while(p)
        {
            printf("p now : %s n", p);
            check = strtof(p, (char**) NULL);
            printf("check now : %f n", check);
            output[rowArr][colArr] = strtof(p, (char**) NULL);
            *numElements += 1;
            colArr++;
            p = strtok('',",");
            printf("output[%d][%d] : %f  ", rowArr, colArr, output[rowArr][colArr]);
        }
        printf("n");
        rowArr++;
    }
    printf("numElements in the end : %dn", *numElements);
    free(buffer);
}
float **make2DArray(int row, int col) 
{  
    float** arr;
    float* temp;
    arr = (float**)malloc(row * sizeof(float*));
    temp = (float*)malloc(row * col * sizeof(float));
    for (int i = 0; i < row; i++) {
        arr[i] = temp + (i * row);
    }
    return arr;
}

输出:

Name : RMatrix
NumElements : 0
Rows : 2
Cols : 4
Name : VMatrix
NumElements : 0
Rows : 2
Cols : 4
RMatrix->arr : 0x11684d0 
VMatrix->arr : 0x1168520 
Output : 0x11684d0 
p now : 1 
check now : 1.000000 
output[0][1] : 0.000000  p now : 2 
check now : 2.000000 
output[0][2] : 0.000000  p now : 3 
check now : 3.000000 
output[0][3] : 0.000000  p now : 4
check now : 4.000000 
output[0][4] : 0.000000  
p now : 5 
check now : 5.000000 
output[1][1] : 4.000000  p now : 6 
check now : 6.000000 
output[1][2] : 0.000000  p now : 7 
check now : 7.000000 
output[1][3] : 0.000000  p now : 8
check now : 8.000000 
output[1][4] : 0.000000  
numElements in the end : 8
RMatrix parsed
Output : 0x1168520 
p now : 1 
check now : 1.000000 
output[0][1] : 0.000000  p now : 2 
check now : 2.000000 
output[0][2] : 0.000000  p now : 3 
check now : 3.000000 
output[0][3] : 0.000000  p now : 4
check now : 4.000000 
output[0][4] : 0.000000  
p now : 5 
check now : 5.000000 
output[1][1] : 4.000000  p now : 6 
check now : 6.000000 
output[1][2] : 0.000000  p now : 7 
check now : 7.000000 
output[1][3] : 0.000000  p now : 8
check now : 8.000000 
output[1][4] : 0.000000  
numElements in the end : 8
VMatrix parsed

可以看到,strtof调用成功了(反映在p和check变量中),但没有赋值到数组中。

我只用了一个月的时间就被它迷住了。然而,很明显我需要学习更多。非常感谢您的帮助

this

arr[i] = temp + (i * row);
应该

arr[i] = temp + (i * col);

since i = [0,row-1]

相关内容

  • 没有找到相关文章

最新更新