数独解算器(ASP.NET 2.0)

数独游戏 在9x9的方格内进行,
分为3x3的小方格,被称为“区”。

数独游戏首先从已经填入数字的格子开始。

数独游戏的目的是根据下列规则,用1至9之间的数字填满空格:

每个数字在每一行、每一列和每一区只能出现一次。

我在 Linux 服务器(请参见“
Linux 下运行 ASP.NET 2.0
”)上用 ASP.NET 2.0 实现了一个数独解算器

http://www.sudoku.name 网站上也有一个用户界面相当不错的“数独解算器
,但是其算法太差了,运算速度比我的算法慢多了。以其网站上的“#5328”谜题(也是我的数独解算器的例题)为例,它需要大约四个小时才能给出答案,而我的解算器不到一秒钟就可以给出答案。从它的运算过程来算,估计是逐个空格进行解算。而我的算法是先找出能填入数字个数最少的空格进行解算。算法这个微小的改进,就极大地提高了计算效率。好了,废话少说,下面就是源程序:

1. sudoku.aspx:

1<%@ Page Language="C#" inherits="Skyiv.Ben.Web.SudokuPage" %>

2<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"

"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

3<html xmlns="http://www.w3.org/1999/xhtml" >

4<head runat="server">

5  <title>银河 - 数独</title>

6</head>

7<body>

8  <form id="form1" runat="server">

9  <asp:Button Text="返回" OnClick="BtnUriHome_Click" runat="server" />

10  <asp:Button Text="开始" OnClick="BtnSubmit_Click" runat="server" />

11  <hr />

12  <div>

13  <a href="http://www.sudoku.name/index-cn.php" target="_blank">数独游戏</a>

14  在9x9的方格内进行, 分为3x3的小方格,被称为“区”。<br />

15  数独游戏首先从已经填入数字的格子开始。<br />

16  数独游戏的目的是根据下列规则,用1至9之间的数字填满空格:<br />

17  每个数字在每一行、每一列和每一区只能出现一次。<br />

18  </div>

19  <div>

20  <asp:TextBox Runat="Server" Id="tbxInput" MaxLength="512" Wrap="False"

21    TextMode="MultiLine" Columns="15" Rows="14" />

22  <asp:TextBox Runat="Server" Id="tbxOutput" ReadOnly="True" Wrap="False"

23    TextMode="MultiLine" Columns="15" Rows="14" />

24  </div>

25  </form>

26</body>

27</html>

28

2. sudoku.aspx.cs:

1using System;

2using System.IO;

3using System.Web.UI;

4using System.Web.UI.WebControls;

5using Skyiv.Ben.Etc;

6

7namespace Skyiv.Ben.Web

8{

9  public class SudokuPage : Page

10  {

11    protected TextBox tbxInput;

12    protected TextBox tbxOutput;

13

14    public void Page_Load(object sender, EventArgs e)

15    {

16      if (IsPostBack) return;

17      tbxInput.Text =    "+---+---+---+\n|2..|||\n|8..|1..|.2.|\n"

18        + "|..5|.7.|.3.|\n+---+---+---+\n|.7.|.3.|1..|\n|.9.|.4.|.8.|\n"

19        + "|..4||.7.|\n+---+---+---+\n|.3.|.9.|6..|\n|.8.|..5|..3|\n"

20        + "|||..5|\n+---+---+---+";

21    }

22

23    public void BtnUriHome_Click(object sender, EventArgs e)

24    {

25      Response.Redirect(Pub.UriHome);

26    }

27

28    public void BtnSubmit_Click(object sender, EventArgs e)

29    {

30      try

31      {

32        Sudoku sudoku = new Sudoku(new StringReader(tbxInput.Text));

33        StringWriter writer = new StringWriter();

34        sudoku.Out(writer);

35        tbxOutput.Text = writer.ToString();

36      }

37      catch (Exception ex)

38      {

39        tbxOutput.Text = "Error: " + ex.Message;

40      }

41    }

42  }

43}

44

3. sudoku.cs:

1using System;

2using System.IO;

3using System.Collections.Generic;

4

5namespace Skyiv.Ben.Etc

6{

7  sealed class Sudoku

8  {

9    byte[,] input, output;

10    int steps = 0;

11

12    public Sudoku(TextReader reader)

13    {

14      input = new byte[9, 9];

15      for (int y = 0; y < 9; )

16      {

17        string s = reader.ReadLine();

18        if (s == null) break;

19        s = s.Replace(‘.‘, ‘0‘);

20        int x = 0;

21        for (int i = 0; i < s.Length; i++)

22          if (Char.IsDigit(s, i) && x < 9) input[x++, y] = (byte)(s[i] - ‘0‘);

23        if (x != 0) y++;

24      }

25    }

26

27    public void Out(TextWriter writer)

28    {

29      Compute(input);

30      Out(writer, output);

31    }

32

33    void Out(TextWriter writer, byte[,] output)

34    {

35      for (int y = 0; y <= output.GetLength(1); y++)

36      {

37        if (y % 3 == 0) writer.WriteLine("+---+---+---+");

38        if (y >= output.GetLength(1)) break;

39        for (int x = 0; x <= output.GetLength(0); x++)

40        {

41          if (x % 3 == 0) writer.Write(‘|‘);

42          if (x >= output.GetLength(0)) break;

43          writer.Write((output[x, y] == 0) ? ‘.‘ : (char)(output[x, y] + ‘0‘));

44        }

45        writer.WriteLine();

46      }

47    }

48

49    bool Compute(byte[,] input)

50    {

51      List<byte[,]> list = StepIt(input);

52      if (list == null) return true;

53      foreach (byte[,] temp in list) if (Compute(temp)) return true;

54      return false;

55    }

56

57    // return null for finish

58    List<byte[,]> StepIt(byte[,] input)

59    {

60      if (steps++ > 100000) throw new Exception("太复杂了");

61      output = input;

62      int theX = -1, theY = -1;

63      byte[] theDigits = null;

64      for (int y = 0; y < input.GetLength(1); y++)

65      {

66        for (int x = 0; x < input.GetLength(0); x++)

67        {

68          if (input[x, y] != 0) continue;

69          byte[] digits = GetDigits(input, x, y);

70          if (digits.Length == 0) return new List<byte[,]>();

71          if (theDigits != null && theDigits.Length <= digits.Length) continue;

72          theX = x;

73          theY = y;

74          theDigits = digits;

75        }

76      }

77      if (theDigits == null) return null;

78      List<byte[,]> result = new List<byte[,]>();

79      foreach (byte digit in theDigits)

80      {

81        byte[,] temp = (byte[,])input.Clone();

82        temp[theX, theY] = digit;

83        result.Add(temp);

84      }

85      return result;

86    }

87

88    byte[] GetDigits(byte[,] input, int x, int y)

89    {

90      bool[] mask = new bool[10];

91      for (int i = 0; i < 9; i++)

92      {

93        mask[input[x, i]] = true;

94        mask[input[i, y]] = true;

95      }

96      for (int i = x / 3 * 3; i < x / 3 * 3 + 3; i++)

97        for (int j = y / 3 * 3; j < y / 3 * 3 + 3; j++)

98          mask[input[i, j]] = true;

99      List<byte> list = new List<byte>();

100      for (int i = 1; i < mask.Length; i++) if (!mask[i]) list.Add((byte)i);

101      return list.ToArray();

102    }

103  }

104}

105

以上代码都很简单,也不需要再另外解说了。

版权声明:本文为博主http://www.zuiniusn.com原创文章,未经博主允许不得转载。

时间: 2024-10-17 18:11:40

数独解算器(ASP.NET 2.0)的相关文章

ASP.NET 4.0的ClientIDMode属性

时光流逝,我们心爱的ASP.NET也步入了4.0的时代,微软在ASP.NET 4.0中对很多特性做了修改.比如我将要讨论的控件ID机制就是其中之一. 在ASP.NET 4.0之前我们总是要为控件的ClientID头疼,比如明明一个叫lblName的Label放在一个叫做grd的GridView里面后,在页面上改Label的ID就变成了诸如grd_clt02_lblName的一长串字符串,如果我们在前台想在使用JS的时候找到该Label,我们不得不用到C#脚本来获得该Label在前台的确切ID,诸

无废话版本-Asp.net MVC4.0 Rasor的基本用法

最近工作有点忙,好久没写东西了!废话不多说了,进入主题! 1.在页面中输出单一变量时候,只要在C#语句之前加上@符号即可,For example: <p>Now Time:@DateTime.Now</p> 请注意,上述example中虽然使用C#语言撰写代码,但输出单一变量的时候,不需要加上分号: 2.在页面上输出一段含有空白字元或者运算子的结果时,必须在前后加上一个小括号,For example: <p> UserName:@(User.Identity.Name+

IIS应用程序池添加ASP.NET v4.0

可能在安装.NET Framewrok 4.0之前,IIS就已经装好了,结果在IIS的应用程序池中只有.NET 2.0的Classic .NET AppPool和DefaultAppPool.在使用vs2010开发的程序时,由于使用的是.NET Framework 4.0,所以部署到IIS上的时候,页面提示“无法识别的属性targetFramework"错误. 解决方案:只需要重新安装一下就可以了.在Frameworv4.0的目录中安装的程序以管理员权限重新运行一下就可以了.执行以下命令: %w

ASP.NET 2.0 异步页面原理浅析 [1]

与 ASP.NET 1.0 相比,ASP.NET 2.0 的各方面改进可以说是非常巨大的.但就其实现层面来说,最大的增强莫过于提供了对异步页面的支持.通过此机制,编写良好的页面可以将数据库.WebService 调用等慢速操作,对网站吞吐能力的影响降到最低,并极大的改善网站的平均页面响应速度.本文将从使用和实现两个层面,简单的剖析这一强大机制的原理,以便读者能够更好的应用这一机制.      对一个网页请求的生命周期来说,首先是 Web 服务器收到客户端 HTTP 请求,将请求转交给 ASP.N

iis7 发布mvc3 遇到的HTTP错误 403.14-Forbidden Web 服务器被配置为不列出此目录的内容及Login on failed for &quot;IIS APPPOOL\ASP.NET v4.0&quot;问题

问题1: 发布mvc3报错:403.14-Forbidden Web 服务器被配置为不列出此目录的内容 折腾了半天,提示里面的解决方法是: 如果不希望启用目录浏览,请确保配置了默认文档并且该文件存在. 使用 IIS 管理器启用目录浏览. 打开 IIS 管理器. 在“功能”视图中,双击“目录浏览”. 在“目录浏览”页上,在“操作”窗格中单击“启用”. 确认站点或应用程序配置文件中的 configuration/system.webServer/[email protected] 特性被设置为 Tr

ASP.NET 4.0尚未在 Web 服务器上注册 解决方法

ASP.NET 4.0尚未在 Web 服务器上注册 解决方法 使用VS2010创建web应用程序时出现如下提示ASP.NET 4.0尚未在 Web 服务器上注册.为了使网站正确运行,可能需要手动将 Web 服务器配置为使用 ASP.NET 4.0,按 F1 可了解更多详细信息 解决方法: 首先设置IIS应用程序池 net framework版本为4.0 然后  开始->所有程序->附件->鼠标右键点击“命令提示符”->以管理员身份运行->%windir%\Microsoft.

asp.net 2.0中傻瓜式使用soap header

在websevrice 中,soap header是十分重要的哦,主要是安全性的考虑,在asp.net 2.0中,可以简单地应用soap header来进行傻瓜式的应用,更复杂的应用当然要更深入地去看了, 首先,我们写个简单的helloworld的webservice using System; using System.Web; using System.Web.Services; using System.Web.Services.Protocols; [WebService(Namespa

Login failed for user &#39;IIS APPPOOL\ASP.NET v4.0&#39;

Looks like it's failing trying to open a connection to SQL Server. You need to add a login to SQL Server for IIS APPPOOL\ASP.NET v4.0 and grant permissions to the database. In SSMS, under the server, expand Security, then right click Logins and selec

ISAPI和CGI限制中没有ASP.NET v4.0 ; vS2013检测到在集成的托管管道模式下不适用的 ASP.NET 设置。

统确实自带了ASP.NET v4.0,但是ISAPI中没有这个选项,导致服务器开不起来 解决方法如下: 1.确保安装IIS时确实安装了ASP.NET,如果没有的话,勾上重新装一下,一般出现404.2时这么干 2.如果你是先装了IIS然后才装了.NET,那就需要把.NET再注册一下,一般出现404.17时这么干 命令是:C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\aspnet_regiis.exe -i 重启IIS就可以看到了       S2013