C# 解决八皇后问题

时间:2015-05-11 08:37:22
【文件属性】:

文件名称:C# 解决八皇后问题

文件大小:4KB

文件格式:TXT

更新时间:2015-05-11 08:37:22

C# 八皇后 路径搜索

using System; using System.Collections.Generic; using System.Text; namespace eightQ { class Program { //定义棋盘大小 static int size = 8; static void Main(string[] args) { DateTime time = DateTime.Now; //定义棋盘数组 int []queen=new int[size+1]; //定义bool变量判断处理是否结束 bool notFinish = true; //定义bool变量判断当前位置是否与其它位置冲突 bool ok = false; //当前处理的列数 int current = 1; int k = 0; int count = 0;


网友评论