马踏棋盘问题

1.问题描述
设计一个国际象棋的马踏棋盘的演示程序
2.需求分析
(1)将马随即放在国际象棋的8×8棋盘BChess[8][8]的某个方格中,马按走棋规则进行移动。要求每个方格只进入一次,走遍棋盘上全部64个方格。
(2)求出马的行走路线,并按求出的行走路线,将数字1,2,……,64依次填入一个8×8的方阵,输出之。

#include <iostream>
#include <time.h>
#include <iomanip>
using namespace std;

#define X 8
#define Y 8

int chess[X][Y];
//找到基于(x,y)下一个可走的位置
int nextxy(int *x,int *y, int count)
{
	switch(count)
	{
	case 0:
		if (*x+2<=X-1&&*y-1>=0&&chess[*x+2][*y-1]==0)
		{
			*x+=2;
			*y-=1;
			return 1;
		}
		break;
	case 1:
		if (*x+2<=X-1&&*y+1<=Y-1&&chess[*x+2][*y+1]==0)
		{
			*x+=2;
			*y+=1;
			return 1;
		}
		break;
	case 2:
		if (*x+1<=X-1&&*y-2>=0&&chess[*x+1][*y-2]==0)
		{
			*x+=1;
			*y-=2;
			return 1;
		}
		break;		
	case 3:
		if (*x+1<=X-1&&*y+2<=Y-1&&chess[*x+1][*y+2]==0)
		{
			*x+=1;
			*y+=2;
			return 1;
		}
		break;
	case 4:
		if (*x-2>=0&&*y-1>=0&&chess[*x-2][*y-1]==0)
		{
			*x-=2;
			*y-=1;
			return 1;
		}
		break;
	case 5:
		if (*x-2>=0&&*y+1<=Y-1&&chess[*x-2][*y+1]==0)
		{
			*x-=2;
			*y+=1;
			return 1;
		}
		break;
	case 6:
		if (*x-1>=0&&*y-2>=0&&chess[*x-1][*y-2]==0)
		{
			*x-=1;
			*y-=2;
			return 1;
		}
		break;		
	case 7:
		if (*x-1>=0&&*y+2<=Y-1&&chess[*x-1][*y+2]==0)
		{
			*x-=1;
			*y+=2;
			return 1;
		}
		break;
	default:
		break;
	}
	return 0;
}
void print()
{
	int i,j;
	for (i=0;i<X;i++)
	{
		for (j=0;j<Y;j++)
		{
			cout<<setw(4)<<chess[i][j];
		}
		cout<<endl;
		
	}
		cout<<endl;	
}
//深度优先遍历
//(x,y)为位置坐标
//tag为标记变量,每走一步tag加1
int TravelVhessBoard(int x,int y,int tag)
{
	int x1=x,y1=y,flag=0,count=0;
	chess[x][y]=tag;
	if (tag==X*Y)
	{
		return 1;
	}
	
	//找到马的下一个可走的坐标(x1,y1),如果找到flag=1,否则为0
	flag=nextxy(&x1,&y1,count);
	while (0==flag&&count<7)
	{
		count++;
		flag=nextxy(&x1,&y1,count);
	}
	

	while (flag)
	{
		if (TravelVhessBoard(x1,y1,tag+1))
		{
			return 1;
		}	
		x1=x;
		y1=y;
		count++;
		flag=nextxy(&x1,&y1,count);
		while (0==flag&&count<7)
		{
			count++;
			flag=nextxy(&x1,&y1,count);
		}

	}
	if (0==flag)
	{
		chess[x][y]=0;

	}
	 return 0;
	
	
}
int main()
{
int i,j;
clock_t start,finish;
start=clock();
for (i=0;i<X;i++) 
{
	for (j=0;j<Y;j++)
	{
		chess[i][j]=0;
	}


}
if (!TravelVhessBoard(2,0,1))
{
	cout<<"Failure!"<<endl;
}
 print();
finish=clock();
cout<<"Time= "<<double(finish-start)/CLOCKS_PER_SEC<<endl;

	return 0;
}


 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
C编程马踏棋盘问题,是一个经典的递归问题。具体问题描述如下: 给定一个 $n\times n$ 的棋盘一个初始位置 $(x,y)$,要求走日的方式,从该位置开始遍历整个棋盘,每个格子只能经过一次。输出遍历的路径。 棋盘上的移动规则如下:假设当前所在的位置为 $(i,j)$,那么可以向下面的 8 个方向中的任意一个方向前进 2 格,然后向左或向右走 1 格。注意,不能走出棋盘。 下面是一份 C语言代码,实现了以上问题的解决方案: ```c #include <stdio.h> #include <stdlib.h> #define SIZE 8 int chessboard[SIZE][SIZE] = {0}; // 初始化棋盘 int dx[8] = {1, 2, 2, 1, -1, -2, -2, -1}; int dy[8] = {2, 1, -1, -2, -2, -1, 1, 2}; void PrintChessBoard() { for (int i = 0; i < SIZE; i++) { for (int j = 0; j < SIZE; j++) { printf("%-3d", chessboard[i][j]); } printf("\n"); } } // 判断该点是否合法 int IsSafe(int x, int y) { return (x >= 0 && x < SIZE && y >= 0 && y < SIZE && chessboard[x][y] == 0); } int DFS(int x, int y, int step) { int i, next_x, next_y; if (step == SIZE * SIZE) { // 遍历完整个棋盘 PrintChessBoard(); // 输出遍历路径 return 1; } for (i = 0; i < 8; i++) { // 枚举8个可能的方向 next_x = x + dx[i]; next_y = y + dy[i]; if (IsSafe(next_x, next_y)) { chessboard[next_x][next_y] = step + 1; // 标记已经走过的位置 if (DFS(next_x, next_y, step + 1)) { // 递归下一步 return 1; } chessboard[next_x][next_y] = 0; // 回溯 } } return 0; } int main() { int x, y; printf("请输入初始位置:\n"); scanf("%d %d", &x, &y); chessboard[x][y] = 1; // 标记起点 if (!DFS(x, y, 1)) { // 如果没有找到解 printf("未找到解!\n"); } return 0; } ``` 运行该程序,输入起始位置,即可输出遍历路径。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值