0

我正在编写一个程序,该程序将在部分解决难题的情况下解决数独难题。在我编写的用于遍历一行中每个元素的 for 循环中,我收到了一个读取访问冲突异常。

这是导致抛出异常的代码:


bool sudoku::numAlreadyInRow(int row, int num)
{
    for (int j = 0; j < 9; j++) 
    {
        cout << "Before ";
        if (grid[row][j] == num)
        {
            cout << "Iterations: " << j;
            return true;
        }
          
    }
    return false;
}

如果有人可以帮助我解决这个问题,将不胜感激。

ETA:异常说是 0xCE2DC5F6

4

0 回答 0