当前位置: 移动技术网 > IT编程>开发语言>c# > C# 数独求解算法的实现

C# 数独求解算法的实现

2020年03月09日  | 移动技术网IT编程  | 我要评论

前言

数独是一种有趣的智力游戏,但是部分高难度数独在求解过程中经常出现大量单元格有多个候选数字可以填入,不得不尝试填写某个数字然后继续推导的方法。不幸的是这种方法经常出现填到一半才发现有单元格无数可填,说明之前就有单元格填错了把后面的路堵死了。这时就需要悔步,之前的单元格换个数重新试。然而更坑的是究竟要悔多少步呢?不知道。要换数字的时候该换哪个呢?也不知道。手算时就需要大量草稿纸记录填写情况,不然容易忘了哪些试过哪些没试过。

在朋友那里玩他手机上的数独的时候就发现这个问题很烦,到这里其实就不是一个智力游戏,而是体力游戏了。这种体力活实际上交给电脑才是王道。网上搜了一圈,大多都是java、vb、c++之类的实现,且多是递归算法。递归有一个问题,随着问题规模的扩大,很容易不小心就把栈撑爆,而且大多数实现只是求出答案就完了,很多求解中的信息就没了,而我更想看看这些过程信息。改别人的代码实在是太蛋疼,想了想,不如自己重新写一个。

正文

说回正题,先简单说明一下算法思路(标准数独):

1、先寻找并填写那些唯一数单元格。在部分数独中有些单元格会因为同行、列、宫内题目已知数的限制,实际只有一个数可以填,这种单元格就应该趁早填好,因为没有尝试的必要,不提前处理掉还会影响之后求解的效率。在填写数字后,同行、列、宫的候选数就会减少,可能会出现新的唯一数单元格,那么继续填写,直到没有唯一数单元格为止。

2、检查是否已经完成游戏,也就是所有单元格都有数字。部分简单数独一直填唯一数单元格就可以完成游戏。

3、按照单元格从左到右、从上到下,数字从小到大的顺序尝试填写有多个候选数的单元格,直到全部填完或者发现有单元格候选数为空。如果出现无候选数的单元格说明之前填错数导致出现死路,就需要悔步清除上一个单元格填过的数,换成下一个候选数继续尝试。如果清除后发现没有更大的候选数可填,说明更早之前就已经填错了,要继续悔步并换下一个候选数。有可能需要连续悔多步,一直悔步直到有更大的候选数可填的单元格。如果一路到最开始的单元格都没法填,说明这个数独有问题,无解。

代码(包括数独求解器,求解过程信息,答案存储三个主要类):

数独求解器

public class sudokusolver
 {
  /// <summary>
  /// 题目面板
  /// </summary>
  public sudokublock[][] sudokuboard { get; }

  public sudokusolver(byte[][] board)
  {
   sudokuboard = new sudokublock[board.length][];
   //初始化数独的行
   for (int i = 0; i < board.length; i++)
   {
    sudokuboard[i] = new sudokublock[board[i].length];
    //初始化每行的列
    for (int j = 0; j < board[i].length; j++)
    {
     sudokuboard[i][j] = new sudokublock(
      board[i][j] > 0
      , board[i][j] <= 0 ? new bitarray(board.length) : null
      , board[i][j] > 0 ? (byte?)board[i][j] : null
      , (byte)i
      , (byte)j);
    }
   }
  }

  /// <summary>
  /// 求解数独
  /// </summary>
  /// <returns>获得的解</returns>
  public ienumerable<(sudokustate sudoku, pathtree path)> solve(bool multianswer = false)
  {
   //初始化各个单元格能填入的数字
   initcandidate();

   var pathroot0 = new pathtree(null, -1, -1, -1); //填写路径树,在非递归方法中用于记录回退路径和其他有用信息,初始生成一个根
   var path0 = pathroot0;

   //循环填入能填入的数字只有一个的单元格,每次填入都可能产生新的唯一数单元格,直到没有唯一数单元格可填
   while (true)
   {
    if (!filluniquenumber(ref path0))
    {
     break;
    }
   }

   //检查是否在填唯一数单元格时就已经把所有单元格填满了
   var finish = true;
   foreach (var row in sudokuboard)
   {
    foreach (var cell in row)
    {
     if (!cell.iscondition && !cell.isunique)
     {
      finish = false;
      break;
     }
    }
    if (!finish)
    {
     break;
    }
   }
   if (finish)
   {
    yield return (new sudokustate(this), path0);
    yield break;
   }

   var pathroot = new pathtree(null, -1, -1, -1); //填写路径树,在非递归方法中用于记录回退路径和其他有用信息,初始生成一个根
   var path = pathroot;
   var tore = new list<(sudokustate sudoku, pathtree path)>();
   //还存在需要试数才能求解的单元格,开始暴力搜索
   int i = 0, j = 0;
   while (true)
   {
    (i, j) = nextblock(i, j);

    //正常情况下返回-1表示已经全部填完
    if (i == -1 && j == -1 && !multianswer)
    {
     var pathlast = path;//记住最后一步
     var path1 = path;
     while(path1.parent.x != -1 && path1.parent.y != -1)
     {
      path1 = path1.parent;
     }

     //将暴力搜索的第一步追加到唯一数单元格的填写步骤的最后一步之后,连接成完整的填数步骤
     path0.children.add(path1);
     path1.parent = path0;
     yield return (new sudokustate(this), pathlast);
     break;
    }

    var numnode = path.children.lastordefault();
    //确定要从哪个数开始进行填入尝试
    var num = numnode == null
     ? 0
     : numnode.number;

    bool filled = false; //是否发现可以填入的数
    //循环查看从num开始接下来的候选数是否能填(num是最后一次填入的数,传到candidate[]的索引器中刚好指向 num + 1是否能填的存储位,对于标准数独,候选数为 1~9,candidate的索引范围就是 0~8)
    for (; !sudokuboard[i][j].iscondition && !sudokuboard[i][j].isunique && num < sudokuboard[i][j].candidate.length; num++)
    {
     //如果有可以填的候选数,理论上不会遇见没有可以填的情况,这种死路情况已经在updatecandidate时检查了
     if (sudokuboard[i][j].candidate[num] && !path.children.any(x => x.number - 1 == num && !x.pass))
     {
      filled = true; //进来了说明单元格有数可以填
      //记录步骤
      var node = new pathtree(sudokuboard[i][j], i, j, num + 1, path);
      path = node;
      //如果更新相关单元格的候选数时发现死路(更新函数会在发现死路时自动撤销更新)
      (bool canfill, (byte x, byte y)[] setlist) updateresult = updatecandidate(i, j, (byte)(num + 1));
      if (!updateresult.canfill)
      {
       //记录这条路是死路
       path.setpass(false);
      }
      //仅在确认是活路时设置填入数字
      if (path.pass)
      {
       sudokuboard[i][j].setnumber((byte)(num + 1));
       path.setlist = updateresult.setlist;//记录相关单元格可填数更新记录,方便在回退时撤销更新
      }
      else //出现死路,要进行回退,重试这个单元格的其他可填数字
      {
       path.block.setnumber(null);
       path = path.parent;
      }
      //填入一个候选数后跳出循环,不再继续尝试填入之后的候选数
      break;
     }
    }
    if (!filled)//如果没有成功填入数字,说明上一步填入的单元格就是错的,会导致后面的单元格怎么填都不对,要回退到上一个单元格重新填
    {
     path.setpass(false);
     path.block.setnumber(null);
     foreach (var pos in path.setlist)
     {
      sudokuboard[pos.x][pos.y].candidate.set(path.number - 1, true);
     }
     path = path.parent;
     i = path.x < 0 ? 0 : path.x;
     j = path.y < 0 ? 0 : path.y;
    }
   }
  }

  /// <summary>
  /// 初始化候选项
  /// </summary>
  private void initcandidate()
  {
   //初始化每行空缺待填的数字
   var rb = new list<bitarray>();
   for (int i = 0; i < sudokuboard.length; i++)
   {
    var r = new bitarray(sudokuboard.length);
    r.setall(true);
    for (int j = 0; j < sudokuboard[i].length; j++)
    {
     //如果i行j列是条件(题目)给出的数,设置数字不能再填(r[x] == false 表示 i 行不能再填 x + 1,下标加1表示数独可用的数字,下标对应的值表示下标加1所表示的数是否还能填入该行)
     if (sudokuboard[i][j].iscondition || sudokuboard[i][j].isunique)
     {
      r.set(sudokuboard[i][j].number.value - 1, false);
     }
    }
    rb.add(r);
   }

   //初始化每列空缺待填的数字
   var cb = new list<bitarray>();
   for (int j = 0; j < sudokuboard[0].length; j++)
   {
    var c = new bitarray(sudokuboard[0].length);
    c.setall(true);
    for (int i = 0; i < sudokuboard.length; i++)
    {
     if (sudokuboard[i][j].iscondition || sudokuboard[i][j].isunique)
     {
      c.set(sudokuboard[i][j].number.value - 1, false);
     }
    }
    cb.add(c);
   }

   //初始化每宫空缺待填的数字(目前只能算标准 n×n 数独的宫)
   var gb = new list<bitarray>();
   //n表示每宫应有的行、列数(标准数独行列、数相同)
   var n = (int)sqrt(sudokuboard.length);
   for (int g = 0; g < sudokuboard.length; g++)
   {
    var gba = new bitarray(sudokuboard.length);
    gba.setall(true);
    for (int i = g / n * n; i < g / n * n + n; i++)
    {
     for (int j = g % n * n; j < g % n * n + n; j++)
     {
      if (sudokuboard[i][j].iscondition || sudokuboard[i][j].isunique)
      {
       gba.set(sudokuboard[i][j].number.value - 1, false);
      }
     }
    }
    gb.add(gba);
   }

   //初始化每格可填的候选数字
   for (int i = 0; i < sudokuboard.length; i++)
   {
    for (int j = 0; j < sudokuboard[i].length; j++)
    {

     if (!sudokuboard[i][j].iscondition)
     {
      var c = sudokuboard[i][j].candidate;
      c.setall(true);
      //当前格能填的数为其所在行、列、宫同时空缺待填的数字,按位与运算后只有同时能填的候选数保持1(可填如当前格),否则变成0
      // i / n * n + j / n:根据行号列号计算宫号,
      c = c.and(rb[i]).and(cb[j]).and(gb[i / n * n + j / n]);
      sudokuboard[i][j].setcandidate(c);
     }
    }
   }
  }

  /// <summary>
  /// 求解开始时寻找并填入单元格唯一可填的数,减少解空间
  /// </summary>
  /// <returns>是否填入过数字,如果为false,表示能立即确定待填数字的单元格已经没有,要开始暴力搜索了</returns>
  private bool filluniquenumber(ref pathtree path)
  {
   var filled = false;
   for (int i = 0; i < sudokuboard.length; i++)
   {
    for (int j = 0; j < sudokuboard[i].length; j++)
    {
     if (!sudokuboard[i][j].iscondition && !sudokuboard[i][j].isunique)
     {
      var canfillcount = 0;
      var index = -1;
      for (int k = 0; k < sudokuboard[i][j].candidate.length; k++)
      {
       if (sudokuboard[i][j].candidate[k])
       {
        index = k;
        canfillcount++;
       }
       if (canfillcount > 1)
       {
        break;
       }
      }
      if (canfillcount == 0)
      {
       throw new exception("有单元格无法填入任何数字,数独无解");
      }
      if (canfillcount == 1)
      {
       var num = (byte)(index + 1);
       sudokuboard[i][j].setnumber(num);
       sudokuboard[i][j].setunique();
       filled = true;
       var upres = updatecandidate(i, j, num);
       if (!upres.canfill)
       {
        throw new exception("有单元格无法填入任何数字,数独无解");
       }
       path = new pathtree(sudokuboard[i][j], i, j, num, path);
       path.setlist = upres.setlist;
      }
     }
    }
   }
   return filled;
  }

  /// <summary>
  /// 更新单元格所在行、列、宫的其它单元格能填的数字候选,如果没有,会撤销更新
  /// </summary>
  /// <param name="row">行号</param>
  /// <param name="column">列号</param>
  /// <param name="cannotfillnumber">要剔除的候选数字</param>
  /// <returns>更新候选数后,所有被更新的单元格是否都有可填的候选数字</returns>
  private (bool canfill, (byte x, byte y)[] setlist) updatecandidate(int row, int column, byte cannotfillnumber)
  {
   var canfill = true;
   var list = new list<sudokublock>(); // 记录修改过的单元格,方便撤回修改

   bool canfillnumber(int i, int j)
   {
    var re = true;
    var _canfill = false;
    for (int k = 0; k < sudokuboard[i][j].candidate.length; k++)
    {
     if (sudokuboard[i][j].candidate[k])
     {
      _canfill = true;
      break;
     }
    }
    if (!_canfill)
    {
     re = false;
    }

    return re;
   }
   bool update(int i, int j)
   {
    if (!(i == row && j == column) && !sudokuboard[i][j].iscondition && !sudokuboard[i][j].isunique && sudokuboard[i][j].candidate[cannotfillnumber - 1])
    {
     sudokuboard[i][j].candidate.set(cannotfillnumber - 1, false);
     list.add(sudokuboard[i][j]);

     return canfillnumber(i, j);
    }
    else
    {
     return true;
    }
   }

   //更新该行其余列
   for (int j = 0; j < sudokuboard[row].length; j++)
   {
    canfill = update(row, j);
    if (!canfill)
    {
     break;
    }
   }

   if (canfill) //只在行更新时没发现无数可填的单元格时进行列更新才有意义
   {
    //更新该列其余行
    for (int i = 0; i < sudokuboard.length; i++)
    {
     canfill = update(i, column);
     if (!canfill)
     {
      break;
     }
    }
   }

   if (canfill)//只在行、列更新时都没发现无数可填的单元格时进行宫更新才有意义
   {
    //更新该宫其余格
    //n表示每宫应有的行、列数(标准数独行列、数相同)
    var n = (int)sqrt(sudokuboard.length);
    //g为宫的编号,根据行号列号计算
    var g = row / n * n + column / n;
    for (int i = g / n * n; i < g / n * n + n; i++)
    {
     for (int j = g % n * n; j < g % n * n + n; j++)
     {
      canfill = update(i, j);
      if (!canfill)
      {
       goto cannotfill;
      }
     }
    }
    cannotfill:;
   }

   //如果发现存在没有任何数字可填的单元格,撤回所有候选修改
   if (!canfill)
   {
    foreach (var cell in list)
    {
     cell.candidate.set(cannotfillnumber - 1, true);
    }
   }

   return (canfill, list.select(x => (x.x, x.y)).toarray());
  }

  /// <summary>
  /// 寻找下一个要尝试填数的格
  /// </summary>
  /// <param name="i">起始行号</param>
  /// <param name="j">起始列号</param>
  /// <returns>找到的下一个行列号,没有找到返回-1</returns>
  private (int x, int y) nextblock(int i = 0, int j = 0)
  {
   for (; i < sudokuboard.length; i++)
   {
    for (; j < sudokuboard[i].length; j++)
    {
     if (!sudokuboard[i][j].iscondition && !sudokuboard[i][j].isunique && !sudokuboard[i][j].number.hasvalue)
     {
      return (i, j);
     }
    }
    j = 0;
   }

   return (-1, -1);
  }

  public override string tostring()
  {
   static string str(sudokublock b)
   {
    var n1 = new[] { "①", "②", "③", "④", "⑤", "⑥", "⑦", "⑧", "⑨" };
    var n2 = new[] { "⑴", "⑵", "⑶", "⑷", "⑸", "⑹", "⑺", "⑻", "⑼" };
    return b.number.hasvalue
     ? b.iscondition
      ? " " + b.number
      : b.isunique
       ? n1[b.number.value - 1]
       : n2[b.number.value - 1]
     : "▢";
   }
   return
$@"{str(sudokuboard[0][0])},{str(sudokuboard[0][1])},{str(sudokuboard[0][2])},{str(sudokuboard[0][3])},{str(sudokuboard[0][4])},{str(sudokuboard[0][5])},{str(sudokuboard[0][6])},{str(sudokuboard[0][7])},{str(sudokuboard[0][8])}
{str(sudokuboard[1][0])},{str(sudokuboard[1][1])},{str(sudokuboard[1][2])},{str(sudokuboard[1][3])},{str(sudokuboard[1][4])},{str(sudokuboard[1][5])},{str(sudokuboard[1][6])},{str(sudokuboard[1][7])},{str(sudokuboard[1][8])}
{str(sudokuboard[2][0])},{str(sudokuboard[2][1])},{str(sudokuboard[2][2])},{str(sudokuboard[2][3])},{str(sudokuboard[2][4])},{str(sudokuboard[2][5])},{str(sudokuboard[2][6])},{str(sudokuboard[2][7])},{str(sudokuboard[2][8])}
{str(sudokuboard[3][0])},{str(sudokuboard[3][1])},{str(sudokuboard[3][2])},{str(sudokuboard[3][3])},{str(sudokuboard[3][4])},{str(sudokuboard[3][5])},{str(sudokuboard[3][6])},{str(sudokuboard[3][7])},{str(sudokuboard[3][8])}
{str(sudokuboard[4][0])},{str(sudokuboard[4][1])},{str(sudokuboard[4][2])},{str(sudokuboard[4][3])},{str(sudokuboard[4][4])},{str(sudokuboard[4][5])},{str(sudokuboard[4][6])},{str(sudokuboard[4][7])},{str(sudokuboard[4][8])}
{str(sudokuboard[5][0])},{str(sudokuboard[5][1])},{str(sudokuboard[5][2])},{str(sudokuboard[5][3])},{str(sudokuboard[5][4])},{str(sudokuboard[5][5])},{str(sudokuboard[5][6])},{str(sudokuboard[5][7])},{str(sudokuboard[5][8])}
{str(sudokuboard[6][0])},{str(sudokuboard[6][1])},{str(sudokuboard[6][2])},{str(sudokuboard[6][3])},{str(sudokuboard[6][4])},{str(sudokuboard[6][5])},{str(sudokuboard[6][6])},{str(sudokuboard[6][7])},{str(sudokuboard[6][8])}
{str(sudokuboard[7][0])},{str(sudokuboard[7][1])},{str(sudokuboard[7][2])},{str(sudokuboard[7][3])},{str(sudokuboard[7][4])},{str(sudokuboard[7][5])},{str(sudokuboard[7][6])},{str(sudokuboard[7][7])},{str(sudokuboard[7][8])}
{str(sudokuboard[8][0])},{str(sudokuboard[8][1])},{str(sudokuboard[8][2])},{str(sudokuboard[8][3])},{str(sudokuboard[8][4])},{str(sudokuboard[8][5])},{str(sudokuboard[8][6])},{str(sudokuboard[8][7])},{str(sudokuboard[8][8])}";
  }
 }

大多数都有注释,配合注释应该不难理解,如有问题欢迎评论区交流。稍微说一下,重载tostring是为了方便调试和查看状态,其中空心方框表示未填写数字的单元格,数字表示题目给出数字的单元格,圈数字表示唯一数单元格填写的数字,括号数字表示有多个候选数通过尝试(暴力搜索)确定的数字。注意类文件最上面有一个using static system.math; 导入静态类,不然每次调用数学函数都要 math. ,很烦。

求解过程信息

public class pathtree
 {
  public pathtree parent { get; set; }
  public list<pathtree> children { get; } = new list<pathtree>();

  public sudokublock block { get; }
  public int x { get; }
  public int y { get; }
  public int number { get; }
  public bool pass { get; private set; } = true;
  public (byte x, byte y)[] setlist { get; set; }

  public pathtree(sudokublock block, int x, int y, int number)
  {
   block = block;
   x = x;
   y = y;
   number = number;

  }

  public pathtree(sudokublock block, int row, int column, int number, pathtree parent)
   : this(block, row, column, number)
  {
   parent = parent;
   parent.children.add(this);
  }

  public void setpass(bool pass)
  {
   pass = pass;
  }
 }

其中记录了每个步骤在哪个单元格填写了哪个数字,上一步是哪一步,之后尝试过哪些步骤,这一步是否会导致之后的步骤出现死路,填写数字后影响到的单元格和候选数字(用来在悔步的时候恢复相应单元格的候选数字)。

答案存储

public class sudokustate
 {
  public sudokublock[][] sudokuboard { get; }
  public sudokustate(sudokusolver sudoku)
  {
   sudokuboard = new sudokublock[sudoku.sudokuboard.length][];
   //初始化数独的行
   for (int i = 0; i < sudoku.sudokuboard.length; i++)
   {
    sudokuboard[i] = new sudokublock[sudoku.sudokuboard[i].length];
    //初始化每行的列
    for (int j = 0; j < sudoku.sudokuboard[i].length; j++)
    {
     sudokuboard[i][j] = new sudokublock(
      sudoku.sudokuboard[i][j].iscondition
      , null
      , sudoku.sudokuboard[i][j].number
      , (byte)i
      , (byte)j);
     if (sudoku.sudokuboard[i][j].isunique)
     {
      sudokuboard[i][j].setunique();
     }
    }
   }
  }

  public override string tostring()
  {
   static string str(sudokublock b)
   {
    var n1 = new[] { "①", "②", "③", "④", "⑤", "⑥", "⑦", "⑧", "⑨" };
    var n2 = new[] { "⑴", "⑵", "⑶", "⑷", "⑸", "⑹", "⑺", "⑻", "⑼" };
    return b.number.hasvalue
     ? b.iscondition
      ? " " + b.number
      : b.isunique
       ? n1[b.number.value - 1]
       : n2[b.number.value - 1]
     : "▢";
   }
   return
$@"{str(sudokuboard[0][0])},{str(sudokuboard[0][1])},{str(sudokuboard[0][2])},{str(sudokuboard[0][3])},{str(sudokuboard[0][4])},{str(sudokuboard[0][5])},{str(sudokuboard[0][6])},{str(sudokuboard[0][7])},{str(sudokuboard[0][8])}
{str(sudokuboard[1][0])},{str(sudokuboard[1][1])},{str(sudokuboard[1][2])},{str(sudokuboard[1][3])},{str(sudokuboard[1][4])},{str(sudokuboard[1][5])},{str(sudokuboard[1][6])},{str(sudokuboard[1][7])},{str(sudokuboard[1][8])}
{str(sudokuboard[2][0])},{str(sudokuboard[2][1])},{str(sudokuboard[2][2])},{str(sudokuboard[2][3])},{str(sudokuboard[2][4])},{str(sudokuboard[2][5])},{str(sudokuboard[2][6])},{str(sudokuboard[2][7])},{str(sudokuboard[2][8])}
{str(sudokuboard[3][0])},{str(sudokuboard[3][1])},{str(sudokuboard[3][2])},{str(sudokuboard[3][3])},{str(sudokuboard[3][4])},{str(sudokuboard[3][5])},{str(sudokuboard[3][6])},{str(sudokuboard[3][7])},{str(sudokuboard[3][8])}
{str(sudokuboard[4][0])},{str(sudokuboard[4][1])},{str(sudokuboard[4][2])},{str(sudokuboard[4][3])},{str(sudokuboard[4][4])},{str(sudokuboard[4][5])},{str(sudokuboard[4][6])},{str(sudokuboard[4][7])},{str(sudokuboard[4][8])}
{str(sudokuboard[5][0])},{str(sudokuboard[5][1])},{str(sudokuboard[5][2])},{str(sudokuboard[5][3])},{str(sudokuboard[5][4])},{str(sudokuboard[5][5])},{str(sudokuboard[5][6])},{str(sudokuboard[5][7])},{str(sudokuboard[5][8])}
{str(sudokuboard[6][0])},{str(sudokuboard[6][1])},{str(sudokuboard[6][2])},{str(sudokuboard[6][3])},{str(sudokuboard[6][4])},{str(sudokuboard[6][5])},{str(sudokuboard[6][6])},{str(sudokuboard[6][7])},{str(sudokuboard[6][8])}
{str(sudokuboard[7][0])},{str(sudokuboard[7][1])},{str(sudokuboard[7][2])},{str(sudokuboard[7][3])},{str(sudokuboard[7][4])},{str(sudokuboard[7][5])},{str(sudokuboard[7][6])},{str(sudokuboard[7][7])},{str(sudokuboard[7][8])}
{str(sudokuboard[8][0])},{str(sudokuboard[8][1])},{str(sudokuboard[8][2])},{str(sudokuboard[8][3])},{str(sudokuboard[8][4])},{str(sudokuboard[8][5])},{str(sudokuboard[8][6])},{str(sudokuboard[8][7])},{str(sudokuboard[8][8])}";
  }
 }

没什么好说的,就是保存答案的,因为有些数独的解不唯一,将来有机会扩展求多解时避免相互覆盖。

还有一个辅助类,单元格定义

 public class sudokublock
 {
  /// <summary>
  /// 填入的数字
  /// </summary>
  public byte? number { get; private set; }

  /// <summary>
  /// x坐标
  /// </summary>
  public byte x { get; }

  /// <summary>
  /// y坐标
  /// </summary>
  public byte y { get; }

  /// <summary>
  /// 候选数字,下标所示状态表示数字“下标加1”是否能填入
  /// </summary>
  public bitarray candidate { get; private set; }

  /// <summary>
  /// 是否为条件(题目)给出数字的单元格
  /// </summary>
  public bool iscondition { get; }

  /// <summary>
  /// 是否为游戏开始就能确定唯一可填数字的单元格
  /// </summary>
  public bool isunique { get; private set; }

  public sudokublock(bool iscondition, bitarray candidate, byte? number, byte x, byte y)
  {
   iscondition = iscondition;
   candidate = candidate;
   number = number;
   isunique = false;
   x = x;
   y = y;
  }

  public void setnumber(byte? number)
  {
   number = number;
  }

  public void setcandidate(bitarray candidate)
  {
   candidate = candidate;
  }

  public void setunique()
  {
   isunique = true;
  }
 }

测试代码

static void main(string[] args)
  {
   //模板
   //byte[][] game = new byte[][] {
   // new byte[]{0, 0, 0, 0, 0, 0, 0, 0, 0},
   // new byte[]{0, 0, 0, 0, 0, 0, 0, 0, 0},
   // new byte[]{0, 0, 0, 0, 0, 0, 0, 0, 0},
   // new byte[]{0, 0, 0, 0, 0, 0, 0, 0, 0},
   // new byte[]{0, 0, 0, 0, 0, 0, 0, 0, 0},
   // new byte[]{0, 0, 0, 0, 0, 0, 0, 0, 0},
   // new byte[]{0, 0, 0, 0, 0, 0, 0, 0, 0},
   // new byte[]{0, 0, 0, 0, 0, 0, 0, 0, 0},
   // new byte[]{0, 0, 0, 0, 0, 0, 0, 0, 0},};
   //这个简单,无需尝试,一直填唯一数单元格,填完后剩下的单元格又有会变唯一数单元格
   //byte[][] game = new byte[][] {
   // new byte[]{0, 5, 0, 7, 0, 6, 0, 1, 0},
   // new byte[]{0, 8, 0, 0, 9, 0, 0, 6, 0},
   // new byte[]{0, 6, 9, 0, 8, 0, 7, 3, 0},
   // new byte[]{0, 1, 0, 0, 4, 0, 0, 0, 6},
   // new byte[]{6, 0, 7, 1, 0, 3, 8, 0, 5},
   // new byte[]{9, 0, 0, 0, 0, 8, 0, 2, 0},
   // new byte[]{0, 2, 4, 0, 1, 0, 6, 5, 0},
   // new byte[]{0, 7, 0, 0, 6, 0, 0, 4, 0},
   // new byte[]{0, 9, 0, 4, 0, 2, 0, 8, 0},};
   //可以填一部分唯一数单元格,剩下一部分需要尝试,调试用
   //byte[][] game = new byte[][] {
   // new byte[]{7, 0, 0, 5, 0, 0, 0, 0, 2},
   // new byte[]{0, 3, 0, 0, 0, 4, 6, 0, 0},
   // new byte[]{0, 0, 2, 6, 0, 0, 0, 0, 0},
   // new byte[]{2, 0, 0, 0, 7, 0, 0, 0, 5},
   // new byte[]{5, 0, 0, 1, 0, 3, 0, 0, 6},
   // new byte[]{3, 0, 0, 4, 0, 0, 0, 0, 9},
   // new byte[]{0, 0, 0, 0, 0, 1, 5, 0, 0},
   // new byte[]{0, 0, 7, 2, 0, 0, 0, 4, 0},
   // new byte[]{4, 0, 0, 0, 0, 9, 0, 0, 7},};
   //全部要靠尝试来填
   byte[][] game = new byte[][] {
    new byte[]{1, 0, 0, 2, 0, 0, 3, 0, 0},
    new byte[]{0, 4, 0, 5, 0, 0, 0, 6, 0},
    new byte[]{0, 0, 0, 7, 0, 0, 8, 0, 0},
    new byte[]{3, 0, 0, 0, 0, 7, 0, 0, 0},
    new byte[]{0, 9, 0, 0, 0, 0, 0, 5, 0},
    new byte[]{0, 0, 0, 6, 0, 0, 0, 0, 7},
    new byte[]{0, 0, 2, 0, 0, 4, 0, 0, 0},
    new byte[]{0, 5, 0, 0, 0, 6, 0, 9, 0},
    new byte[]{0, 0, 8, 0, 0, 1, 0, 0, 3},};
   var su = new sudokusolver(game);
   var r = su.solve();
   var r1 = r.first();
   static ienumerable<pathtree> getpath(pathtree pathtree)
   {
    list<pathtree> list = new list<pathtree>();
    var path = pathtree;
    while (path.parent != null)
    {
     list.add(path);
     path = path.parent;
    }

    return list.reverse<pathtree>();
   }

   var p = getpath(r1.path).select(x => $"在 {x.x + 1} 行 {x.y + 1} 列填入 {x.number}");
   foreach(var step in p)
   {
    console.writeline(step);
   }

   console.writeline(r1.sudoku);
   console.readkey();
  }

结果预览:

上面还有,更多步骤,太长,就不全部截下来了。关于第二张图详情请看后面的总结部分。

总结

这个数独求解器运用了大量 c# 7 的新特性,特别是 本地函数 和 基于 tulpe 的简写的多返回值函数,能把本来一团乱的代码理清楚,写清爽。 c# 果然是比 java 这个躺在功劳簿上吃老本不求上进的坑爹语言爽多了。yield return 返回迭代器这种简直是神仙设计,随时想返回就返回,下次进来还能接着上次的地方继续跑,写这种代码简直爽翻。另外目前多解求解功能还不可用,只是预留了集合返回类型和相关参数,以后看情况吧。

如果你看过我的这篇文章.net core 3 骚操作 之 用 windows 桌面应用开发 asp.net core 网站,你也可以在发布启动网站后访问https://localhost/sudoku来运行数独求解器,注意,调试状态下端口为5001。

  本文地址:https://www.cnblogs.com/coredx/p/12173702.html

  完整源代码:github

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持移动技术网。

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网