将strtof值分配给C中的2D数组

时间:2013-03-17 19:11:19

标签: c pointers multidimensional-array dynamic-arrays

我正在尝试将CS​​V文件解析为C中的2D数组。我想用结构制作一个矩阵:

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

我正在使用的函数采用动态分配的浮点数2D数组,并返回。我正在使用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 parsed\n");
    parseCSV(fpVMatrix, VMatrix->arr, VMatrix->row, VMatrix->col, &(VMatrix->numElements), INPUT_LENGTH);
    printf("VMatrix parsed\n");

以下是功能:

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('\0',",");
            printf("output[%d][%d] : %f  ", rowArr, colArr, output[rowArr][colArr]);
        }
        printf("\n");
        rowArr++;
    }
    printf("numElements in the end : %d\n", *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变量中),但没有分配到数组中。

我只用了一个月的C,我对它很着迷。但是,很明显我需要了解更多。我非常感谢你的帮助:)。

1 个答案:

答案 0 :(得分:1)

这个

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

应该是

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

i = [0,row-1]

以来