using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HouseMoveRecursive
{
class Program
{
int count = 0;
int solution = 0;
static int n = 5;
int[,] move = new int[8, 2] { { -1, -2 }, { -2, -1 }, { -2, 1 }, { -1, 2 }, { 1, 2 }, { 2, 1 }, { 2, -1 }, { 1, -2 } };
public int[,] board=new int[n,n];
bool IsOK(int x,int y)
{
if ((x <= n - 1) && (x >= 0)
&& (y <= n - 1) && (y >= 0)
&& (board[x,y] == 0))
{
return true;
}
else
{
return false;
}
}
void Show()
{
Console.WriteLine("第{0}种解", solution++);
for (int i = 0; i < n; i++)
{
for (int j = 0; j < n; j++)
{
Console.Write(" "+board[i, j]);
}
Console.WriteLine();
}
Console.WriteLine("-----");
}
void DFS(int row, int col)
{
int nextX;
int nextY;
for (int i = 0; i < 8; i++)
{
nextX = row + move[i,0];
nextY = col + move[i, 1];
if(IsOK(nextX,nextY))
{
if (count <24)
{
count++;
board[nextX, nextY] = count;
DFS(nextX, nextY);
board[nextX, nextY] = 0;
count--;
}
else
{
Show();
}
}
}
//find
//forward
//back
//done
}
static void Main(string[] args)
{
Program p = new Program();
for (int i = 0; i < n; i++)
{
for (int j = 0; j < n; j++)
{
p.board[i, j] = 0;
}
}
p.board[0,0] = 1;
p.count = 1;
p.DFS(0, 0);
Console.ReadKey();
}
}
}
用DFS解决马走日的问题(递归)(c#)
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 【蝴蝶效应】 蝴蝶效应:上个世纪70年代,美国一个名叫洛伦兹的气象学家在解释空气系统理论时说,亚马逊雨林一只蝴蝶...
- “近日言承旭出席某活动时,松口表示愿意跟林志玲复合,“那就要看她愿不愿意啊!” 据台湾媒体报道,言承旭一年没在台湾...