更新2D阵列时出现分段错误

时间:2018-04-12 02:10:50

标签: c pointers multidimensional-array segmentation-fault structure

我正在研究2D数组和指针,我正在尝试创建一个填字游戏。我是C的新手,所以仍然对指针和数组感到困惑。在这段代码中,我试图将struct array中的单词插入到2D数组中。当我调试我的代码插入(我希望它)时,2个字到数组但在第3个中我得到分段错误。

我的结构:

typedef struct
{
 char *word;     //word and corresponding hint
 char *clues;
 int x;      //Starting x and y positions
 int y;
 char direction;     //H for horizontal, V for vertical
 int f;      //solved or not
}Word_t;

我要做的是读取单词的方向并在我的2D数组上插入适当的位置。可能:

*****
*****
*****  //first state of the array
*****
*****

//insert a word like "MILK whose direction is 'H' x=1 y=1"

MILK*
*****
*****
*****
*****

我的功能是将字符串插入电路板:

char** updateBoard(char** myBoard, Word_t *nWords, int solve)
{
if(solve!=-1)
{
    if(nWords[solve].direction=='V')
    {
        int len=strlen(nWords[solve].word);
        for(int i=0;i<=len;i++)
        {
            myBoard[nWords[solve].y][i]=nWords[solve].word[i];
        }
    }
    else if(nWords[solve].direction=='H')
    {
        int len=strlen(nWords[solve].word);
        for(int i=0;i<=len;i++)
        {
            myBoard[nWords[solve].x][i]=nWords[solve].word[i];     //segmentation fault here
        }
    }
}
else{
    if(nWords[solve].direction=='V')
    {
        int len=strlen(nWords[solve].word);
        for(int i=0;i<=len;i++)
        {
            myBoard[nWords[solve].y][i]='_';
        }
    }
    else if(nWords[solve].direction=='H')
    {
        int len=strlen(nWords[solve].word);
        for(int i=0;i<=len;i++)
        {
            myBoard[nWords[solve].x][i]='_';
        }
    }
}
return myBoard;
}

1 个答案:

答案 0 :(得分:0)

关于:

typedef struct
{
    char *word;     //word and corresponding hint
    char *clues;
    int x;      //Starting x and y positions
    int y;
    char direction;     //H for horizontal, V for vertical
    int f;      //solved or not
}Word_t;

myBoard[nWords[solve].x][i]=nWords[solve].word[i];

字段:word是一个指针。该指针尚未设置为指向应用程序拥有的某些内存(通过malloc()calloc()

因此,应用程序正在编写字段word中的垃圾点。这是未定义的行为,可能导致seg错误 事件

`myBoard [] []的实际定义是什么?

发生故障时Word_t nWord[ source ]实例中的值是什么?