我第一次使用二维数组来编写数独检查程序;下面是我的代码。
我的程序编译没有错误,但是当我运行它时,它给了我一个分段错误。
自从我上次编码以来已经有一段时间了,所以我不确定我错过了什么。我以前也从来没有处理过这个错误。
我的代码:
#include <stdio.h>
#include <stdlib.h>
int sudokuCheck();
int arrayMake();
#define SIZE 9
int main(){
int sudokAmount;
printf("Please Enter the amount of solutions to solve:n");
scanf("%d",&sudokAmount);
arrayMake();
//sudokuCheck(sudokAmount);
return 0;
}
int arrayMake(){
int j;
int i;
int** sudoArr;
sudoArr = malloc(sizeof(int*) * SIZE * SIZE);
printf("Please Enter Sudoku Solutions(By rows)n");
for(i = 0; i < SIZE; i++){
for(j=0; j < SIZE; j++){
scanf("%dn", &sudoArr[i][j]);
}
}
for(i = 0; i < SIZE; i++){
for(j=0; j < SIZE; j++){
printf("%d n", sudoArr[i][j]);
}
}
return 0;
}
首先,您以错误的方式为矩阵分配内存。正确的将是:
int** sudoArr = (int**)malloc(SIZE * sizeof(int*));
for (int index=0; index < SIZE; ++index)
{
sudoArr[index] = (int*)malloc(SIZE * sizeof(int));
}
使用正确版本的代码链接到在线编译器:正确的源代码