当我编译我的程序时,它显示“segmentation fault (or) segmentation fault(core dumped)

When I compile my program,it displays "segmentaion fault (or) segmentation fault(core dumped)

当我编译我的程序时,它显示

segmentaion fault (or) segmentation fault(core dumped)

我的代码有时似乎可以工作,它给出了整个骑士移动的次数 chessBoard,当在从所有其他路径中随机选择的方格上移动时,可能骑士可以走,但这不是'似乎总是不能正常工作(只是为了简单起见,我选择了 5x5 棋盘),为什么会这样,我该怎么做才能解决它?

#include <iostream>
#include <array>
#include <ctime>
#include <cstdlib>
using namespace std;

int main()
{
     array<array<int , 5>,5> chessBoard = {};
     array<int , 8> horizontal = {2,1,-1,-2,-2,-1,1,2};
     array<int , 8> vertical = {-1,-2,-2,-1,1,2,2,1};
     array<int, 8> temp ={};
     int count = 0 , t = 0 ,index;
     int cR = 4 , cC = 4 ,square =  1;
     srand(static_cast<unsigned>(time(0)));

     do
     {
       t = 0;
       for(size_t i = 0;i < 8;i++ )
       {
          cR += vertical[i];
          cC += horizontal[i];

          if(cR > 0 && cR < 8 && cC > 0 && cC < 8 && chessBoard[cR][cC] != -1)
          {
             temp[t] = i;
             t++;

          }
          cR -= vertical[i];
          cC -= horizontal[i];

       }
       if(t > 0)
       {
         index = rand() % t;
         chessBoard[cR][cC] = -1;
         cR += vertical[temp[index]];
         cC += horizontal[temp[index]];
         count++;
       }

       for(size_t j=0;j< t;j++)
         temp[j] = 0;

       square++;
   }while(square <= 25);

    cout<<"count is "<<count;
    return 0;

}

错误是Segmentation fault或者有时会显示Segmentation fault (core dumped),请问是什么问题?

替换

array<array<int , 5>,5> chessBoard = {};

来自

array<array<int,8>,8> chessBoard;

段错误是当您的程序试图访问它不允许的内存时。

编译时不会发生这种情况,但在 运行 程序时会发生。