偏差函数引发以下错误:“数组下标不是整数”。如果您可以帮助我找到错误的原因,我们将不胜感激。
#ifdef _MSC_VER
#define _CRT_SECURE_NO_WARNINGS
#endif
#include "stdio.h"
#include "stdlib.h"
#include <stdbool.h>
//----<< To store matrix cell cordinates >>--------------------------
struct point
{
double x;
double y;
};
typedef struct point Point;
//---<< A Data Structure for queue used in robot_maze >>---------------------
struct queueNode
{
Point pt; // The cordinates of a cell
int dist; // cell's distance of from the source
};
//----<< check whether given cell (row, col) is a valid cell or not >>--------
bool isValid(int row, int col, int ROW, int COL)
{
// return true if row number and column number is in range
return (row >= 0) && (row < ROW) && (col >= 0) && (col < COL);
}
//----------------------------------------------------------------------------
int robot_maze()
{
int solution = -1;
int ROW, COL, i,j;
Point src, dest;
scanf("%d", &ROW);
scanf("%d", &COL);
scanf("%d %d",&src.x,&src.y);
scanf("%d %d",&dest.x,&dest.y);
int arr[ROW][COL],visited[ROW][COL];
for (i = 0;i < ROW;i++)
for (j = 0;j < COL;j++)
{
scanf("%d", &arr[i][j]);
visited[i][j] = -1;
};
// check both source and destination cell of the matrix have value 0
//if (arr[src.x][src.y] || arr[dest.x][dest.y])
// return -1;
return solution;
}
“ if”语句(//后面)应该可以正常工作,并输入两个值是否均为0。注意,我将2D矩阵“ arr”定义为int类型。为什么会出现此错误?
我试图解决的问题是“二进制迷宫中的最短路径”问题,但是我一开始就陷入了困境。
答案 0 :(得分:1)
仔细阅读错误:它指出Array subscript is not an integer
。有问题的错误是因为用于访问数组元素的值。
src.x
,src.y
,dest.x
和dest.y
的类型为double
。您需要将point
重新定义为:
struct point
{
int x;
int y;
};
或者,如果您必须使用double
,则可以强制转换为int
。