C-在结构数组中打印2d数组的元素

时间:2019-05-24 02:56:33

标签: c arrays matrix struct ansi-c

我试图创建一个函数来设置2D数组的值,然后创建另一个函数来打印这些值。

由于某种原因,在我当前的实现中,如果我创建一个3x3矩阵并将每个值设置为数字5,它将打印这些值,但会打印从5开始递增的值,因此将打印567、678、789 ,相反,我希望它打印我设置的确切值。

这是函数定义-我在做什么错?:

结构定义:

    struct matrix{
        char matrixName[50];
        int rows;
        int columns;
        float* data;
    };
    typedef struct matrix matrix_t;

矩阵创建:

int create_matrix(matrix_t* matrixP, int matrixLocation){

  char tempName[50];
  int rows, cols;


  printf("Enter a name for your matrix>\n");
  scanf("%s", tempName);

  printf("Enter the number of rows>\n");
  scanf("%d", &rows);

  printf("Enter the number of cols>\n");
  scanf("%d", &cols);

  float * our_matrix = (float *) malloc(rows * cols * sizeof(float));  

  strcpy(matrixP[matrixLocation].matrixName, tempName);
  matrixP[matrixLocation].rows = rows;
  matrixP[matrixLocation].columns = cols;
  matrixP[matrixLocation].data = our_matrix;

  return 0;

}

设置值:

int setValues(matrix_t* our_matrix, int matrix_index) {
  int counter = 0;
  int row = 0, col = 0;
  for (col = 1; col <= our_matrix[matrix_index].columns; col++) {
    for (row = 1; row <= our_matrix[matrix_index].rows; row++) {
      counter++;

      printf("Enter the value for column number %d of row number %d>\n", col, row);
      scanf("%f", our_matrix[matrix_index].data+(col-1)+(row-1));                
    }
    /* separate rows by newlines */
  }
    return 0;
}

打印:

int printMatrix(matrix_t* our_matrix, int index) {
      int row = 0, col = 0;
      for (col = 1; col <= our_matrix[index].columns; col++) {
        for (row = 1; row <= our_matrix[index].rows; row++) {
      printf(" %2.f ", *our_matrix[index].data+(col-1)+(row-1));   
    }
    printf("\n");
  }
    return 0;
}

如果我不先使用setValues就调用printMatrix()函数,则看起来像这样打印单元格的相对位置:

enter image description here

但是当我调用setValues()并将所有值设置为数字5时,它的打印从数字5开始递增,如下所示:

enter image description here

1 个答案:

答案 0 :(得分:1)

您的位置计算不正确。有一个问题和一个“常规符号”问题。

问题在于数组下标的计算:

scanf("%f", our_matrix[matrix_index].data+(col-1)+(row-1));
printf(" %2.f ", *our_matrix[index].data+(col-1)+(row-1));

您需要将(row - 1)的值乘以our_matrix[matrix_index].cols。对于这些值,使用一些较短的名称可能会更好:

int max_col = our_matrix[matrix_index].columns;
int max_row = our_matrix[matrix_index].rows;
float *data = our_matrix[matrix_index].data;

for (col = 1; col <= max_col; col++)
{
    for (row = 1; row <= max_row; row++)
    {
        printf("Enter the value for column number %d of row number %d>\n", col, row);
        if (scanf("%f", data + (col-1) + (row-1) * max_col) != 1)
        {
            …report error and do not continue…
        }
    }
}

for (col = 1; col <= max_col; col++)
{
    for (row = 1; row <= max_row; row++)
        printf(" %.2f", data[(col-1) + (row-1) * max_col]);
    putchar('\n');
}

涉及实质性错误。请注意scanf()上的错误检查。这在“现实世界”计划中很重要(即使您在课堂上或在线比赛中没有参加该计划也是如此)。您也可以在对&data[(col-1) + (row-1) * max_cols]的调用中明智地使用符号data + (col-1) + (row-1) * max_cols代替scanf()-这样可以提高代码的一致性。

“常规表示法”的问题是,在C中,数组索引从0开始而不是从1开始,并且可以通过遵循C约定来避免使用多个-1术语。该代码段还在需要时声明了循环变量,从而最大程度地减小了范围。自C99以来,这是C的功能-在某些逆行(但流行且广泛使用)的平台上可能不可用。

for (int col = 0; col < max_col; col++)
{
    for (int row = 0; row < max_row; row++)
        printf(" %.2f", data[col + row * max_col]);
    putchar('\n');
}