创建connect 4 board c程序时出现分段错误

创建connect 4 board c程序时出现分段错误,c,pointers,multidimensional-array,segmentation-fault,C,Pointers,Multidimensional Array,Segmentation Fault,我正在创建一个connect-4游戏。。。我做了很多;然而,我创建板的方式是静态的&它需要是动态的,所以我在主程序中实现它之前,已经做了一个辅助程序来解决这个问题。出于某种原因,这段代码中的if&elseif条件会产生分段错误,我不明白为什么 // for the rows/columns of the board for(row = num_rows - 1; row >= 0; row--){ printf("|"); for(col = 0; col

我正在创建一个connect-4游戏。。。我做了很多;然而,我创建板的方式是静态的&它需要是动态的,所以我在主程序中实现它之前,已经做了一个辅助程序来解决这个问题。出于某种原因,这段代码中的if&elseif条件会产生分段错误,我不明白为什么

  // for the rows/columns of the board
  for(row = num_rows - 1; row >= 0; row--){
      printf("|");
      for(col = 0; col < num_columns; col++){
         if(aPtr[row][col] == '0') {
            printf("| X ");
         }
         else if(aPtr[row][col] == '1') {
            printf("| O ");
         }
         else {
              printf("|   ");
         }      
      }
      puts("||");
   }
本侧程序的全部内容如下所示,如有任何关于该分段故障发生原因的见解,将不胜感激

    #include <stdio.h>
            #include <stdlib.h>
            #include <string.h>
            #include <sys/stat.h>


            void initialize(int num_rows, int num_cols, char **aPtr) {
              int i, r, c;

                    // create the space for the board
                    aPtr = malloc(num_rows * sizeof(char*));

                    for (i = 0; i < num_rows; i++){
                        aPtr[i] = malloc(num_cols * sizeof (char));
                    }

                    // go through the board and set all values equal to -1
                    for (r = 0; r < num_rows; r++) {
                        for (c = 0; c < num_cols; c++) {
                            aPtr[r][c] = '9';
                            printf("%c", aPtr[r][c]);
                        }
                        printf("\n");
                    }
                }


            void printBoard(int num_rows, int num_columns, char **aPtr) {
               int row, col; 

               printf("\n");
               puts("------ Connect *Four ------");
               puts("Connect X Command Line Game");

               // for fancy top of board frame
               printf("&&");
               for(col = 1; col < num_columns; col++) {
                printf("====");
               }
               printf("===");
                printf("&&\n");

                // for the rows/columns of the board
               for(row = num_rows - 1; row >= 0; row--){
                  printf("|");
                  for(col = 0; col < num_columns; col++){
                    //  if(aPtr[row][col] == '0') {
                    //      printf("| X ");
                    //  }
                   //  else if(aPtr[row][col] == '1') {
                   //    printf("| O ");
                   //  }
                    // else {
                        printf("|   ");
                    // }      
                  }
                  puts("||");
               }

               // for fancy bottom of board frame
               printf("&&");
               for(col = 1; col < num_columns; col++) {
                printf("====");
               }
                printf("===");
                printf("&&\n");
                printf("  ");
                if (col < 100){
                  for(col = 0; col < num_columns; col++) {
                    if (col < 10) {
                      printf(" %d  ", col + 1);
                    }
                    else {
                      printf("%d  ", col + 1);
                    }
                 }
                 puts("\n");
                }
            }

            // *******************************************************************************************************
            // *******************************************************************************************************

            int main (int argc, char *argv[]) {

                char **aPtr;
                int height = 10;
                int width = 5;
                int i;


                initialize(height, width, aPtr);
                printBoard(height, width, aPtr);
            }
#包括
#包括
#包括
#包括
无效初始化(整数行、整数列、字符**aPtr){
int i,r,c;
//为电路板创建空间
aPtr=malloc(num_rows*sizeof(char*);
对于(i=0;i=0;行--){
printf(“|”);
用于(列=0;列
这是对代码的修改,可能会有所帮助。注意,我正在传递
&aPtr
*aPtr=(char*)malloc(…)

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>


void initialize(int num_rows, int num_cols, char **aPtr) {
    int i, r, c;

    // create the space for the board
    *aPtr = (char*) malloc(num_rows * sizeof(char*));

    if(*aPtr == NULL)
    {
        free(*aPtr);
        printf("Memory allocation failed");
    }

    for (i = 0; i < num_rows; i++){
        aPtr[i] = (char *) malloc(num_cols * sizeof (char));
    }

    // go through the board and set all values equal to -1
    for (r = 0; r < num_rows; r++) {
        for (c = 0; c < num_cols; c++) {
            aPtr[r][c] = '9';
            printf("%c", aPtr[r][c]);
        }
        printf("\n");
    }
}


void printBoard(int num_rows, int num_columns, char **aPtr) {
    int row, col;

    printf("\n");
    puts("------ Connect *Four ------");
    puts("Connect X Command Line Game");

    // for fancy top of board frame
    printf("&&");
    for(col = 1; col < num_columns; col++) {
        printf("====");
    }
    printf("===");
    printf("&&\n");

    // for the rows/columns of the board
    for(row = num_rows - 1; row >= 0; row--){
        printf("|");
        for(col = 0; col < num_columns; col++){
              if(aPtr[row][col] == '0') {
                  printf("| X ");
              }
              else if(aPtr[row][col] == '1') {
                printf("| O ");
              }
            else {
                printf("|   ");
            }
        }
        puts("||");
    }

    // for fancy bottom of board frame
    printf("&&");
    for(col = 1; col < num_columns; col++) {
        printf("====");
    }
    printf("===");
    printf("&&\n");
    printf("  ");
    if (col < 100){
        for(col = 0; col < num_columns; col++) {
            if (col < 10) {
                printf(" %d  ", col + 1);
            }
            else {
                printf("%d  ", col + 1);
            }
        }
        puts("\n");
    }
}

// *******************************************************************************************************
// *******************************************************************************************************

int main (int argc, char *argv[]) {

    char *aPtr;
    int height = 10;
    int width = 5;
    int i;


    initialize(height, width, &aPtr);
    printBoard(height, width, &aPtr);
}

我假设这就是您所期望的?

aPtr=…
无法更新调用方变量。@BLUEPIXY您指的是哪行代码?
aPtr=malloc(num_rows*sizeof(char*)@BLUEPIXY我不确定我是否明白。。。这不会给我任何警告或错误,并且initialize方法工作正常。请参阅
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>


void initialize(int num_rows, int num_cols, char **aPtr) {
    int i, r, c;

    // create the space for the board
    *aPtr = (char*) malloc(num_rows * sizeof(char*));

    if(*aPtr == NULL)
    {
        free(*aPtr);
        printf("Memory allocation failed");
    }

    for (i = 0; i < num_rows; i++){
        aPtr[i] = (char *) malloc(num_cols * sizeof (char));
    }

    // go through the board and set all values equal to -1
    for (r = 0; r < num_rows; r++) {
        for (c = 0; c < num_cols; c++) {
            aPtr[r][c] = '9';
            printf("%c", aPtr[r][c]);
        }
        printf("\n");
    }
}


void printBoard(int num_rows, int num_columns, char **aPtr) {
    int row, col;

    printf("\n");
    puts("------ Connect *Four ------");
    puts("Connect X Command Line Game");

    // for fancy top of board frame
    printf("&&");
    for(col = 1; col < num_columns; col++) {
        printf("====");
    }
    printf("===");
    printf("&&\n");

    // for the rows/columns of the board
    for(row = num_rows - 1; row >= 0; row--){
        printf("|");
        for(col = 0; col < num_columns; col++){
              if(aPtr[row][col] == '0') {
                  printf("| X ");
              }
              else if(aPtr[row][col] == '1') {
                printf("| O ");
              }
            else {
                printf("|   ");
            }
        }
        puts("||");
    }

    // for fancy bottom of board frame
    printf("&&");
    for(col = 1; col < num_columns; col++) {
        printf("====");
    }
    printf("===");
    printf("&&\n");
    printf("  ");
    if (col < 100){
        for(col = 0; col < num_columns; col++) {
            if (col < 10) {
                printf(" %d  ", col + 1);
            }
            else {
                printf("%d  ", col + 1);
            }
        }
        puts("\n");
    }
}

// *******************************************************************************************************
// *******************************************************************************************************

int main (int argc, char *argv[]) {

    char *aPtr;
    int height = 10;
    int width = 5;
    int i;


    initialize(height, width, &aPtr);
    printBoard(height, width, &aPtr);
}
------ Connect *Four ------
Connect X Command Line Game
&&===================&&
|| X | X | X | X | X ||
|| X | X | X | X | X ||
|| X | X | X | X | X ||
|| X | X | X | X | X ||
|| X | X | X | X | X ||
|| X | X | X | X | X ||
|| X | X | X | X | X ||
|| X | X | X | X | X ||
|| X | X | X | X | X ||
|| X | X | X | X | X ||
&&===================&&
   1   2   3   4   5