简单搜索题:马的走法
一个4×5的棋盘,输入马的起始坐标,求马能返回初始位置的所有不同走法的总数(马走过的位置不能重复,马走“日”字)。
#include <iostream>
using namespace std;
const int ROWS = 4;//行数
const int COLUMS = 5;//列数
int chess[ROWS][COLUMS];//棋盘
int numCount = 0;
int posX,posY;
int direction[2][8]={{-1,-1,-2,-2,2,2,1,1},{-2,2,1,-1,1,-1,2,-2}};//马走"日"字
void Solve(int x,int y)
{
int i,j,desX,desY;
for (i=0;i<8;++i)
{
desX = x+direction[0][i];//目标位置x坐标
desY = y+direction[1][i];//目标位置y坐标
if (desX>=0&&desX<4&&desY>=0&&desY<5&&chess[desX][desY]==0)
{//满足规则,走到目标处,并继续搜索
chess[desX][desY] = 1;
Solve(desX,desY);
chess[desX][desY] = 0;
}
else if (desX==posX&&desY==posY)
{//回到了起点
numCount++;
}
}
}
int main()
{
cin>>posX>>posY;
memset(chess,0,sizeof(chess));
numCount = 0;//走法数
chess[posX][posY] = 1;//起始步
Solve(posX,posY);//开始搜索
cout<<numCount<<endl;
system("pause");
return 0;
}
using namespace std;
const int ROWS = 4;//行数
const int COLUMS = 5;//列数
int chess[ROWS][COLUMS];//棋盘
int numCount = 0;
int posX,posY;
int direction[2][8]={{-1,-1,-2,-2,2,2,1,1},{-2,2,1,-1,1,-1,2,-2}};//马走"日"字
void Solve(int x,int y)
{
int i,j,desX,desY;
for (i=0;i<8;++i)
{
desX = x+direction[0][i];//目标位置x坐标
desY = y+direction[1][i];//目标位置y坐标
if (desX>=0&&desX<4&&desY>=0&&desY<5&&chess[desX][desY]==0)
{//满足规则,走到目标处,并继续搜索
chess[desX][desY] = 1;
Solve(desX,desY);
chess[desX][desY] = 0;
}
else if (desX==posX&&desY==posY)
{//回到了起点
numCount++;
}
}
}
int main()
{
cin>>posX>>posY;
memset(chess,0,sizeof(chess));
numCount = 0;//走法数
chess[posX][posY] = 1;//起始步
Solve(posX,posY);//开始搜索
cout<<numCount<<endl;
system("pause");
return 0;
}
作者:洞庭散人
出处:http://phinecos.cnblogs.com/
本博客遵从Creative Commons Attribution 3.0 License,若用于非商业目的,您可以自由转载,但请保留原作者信息和文章链接URL。
posted on 2008-11-12 20:36 Phinecos(洞庭散人) 阅读(1023) 评论(0) 编辑 收藏 举报