当我编译程序时,它显示“ segmentaion fault(或)segmentation fault(核心已转储)

时间:2019-05-30 05:14:03

标签: c++ knights-tour

当我编译程序时,它显示

  

分段故障(或)分段故障(核心已转储)

我的代码有时可以正常工作,它给出了整个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;

}

错误是分段错误,或者有时显示分段错误(核心已转储),这是什么问题?

1 个答案:

答案 0 :(得分:0)

替换

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

作者

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

分段错误是指程序尝试访问不允许的内存。

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