搜索资源列表
数据结构7-骑士巡游
- 一组数据结构c源码->7-经典的骑士巡游--over-a data structure c-source-gt; 7-Cleveland classic parade -- over
孟庆洋 分治
- 是著名的骑士巡游问题的改进,采用了分治策略,同样也是我的个人作品,向往大家给予批评指正-Cleveland is the famous parade of improvement, adopted a divide and conquer strategy, but it's also my personal work, and yearning for everyone criticized correction
骑士巡游
- 本程序是著名的骑士巡游问题,利用了最小度优先和回溯算法,-this procedure is the famous parade Cleveland, the use of the least priority and backtracking algorithms,
Knight2
- 这是自己写的骑士巡游问题的源代码,控制台实现没有图形化-This is, the parade was the Knights of the source code, not realizing console Graphic
KT
- 骑士巡游,是用applet的小游戏,你可以自己测试看下你的显示效果-Knights parade, the applet is a small game, you can own your facie test results show
qishixunyou
- 这是骑士巡游的一个演示程序 可以表现出回溯。-This is a parade of the demonstration program can show retrospective.
knight_Cplusplus
- 解国际象棋骑士巡游问题的C++源代码,主程序为knight.c-Solutions International Chess Knight parade of C source code, the main program for knight.c
QiShiXunYouCcode
- 一个关于骑士巡游的C程序代码,对研究信息安全和图像处理的人士十分有用。-a parade on the C code for the study of information security and image processing are very useful.
ACO_Knight_3
- 三维广义骑士巡游问题的蚁群算法的程序,能够很好的生成骑士巡游路径
55
- 骑士巡游的java的程序源代码跟马踏格子是一样的
qishi
- 国际象棋游戏一个经典的例子就是骑士巡游(knight s tour)问题,这个问题要求从棋盘上任意给定的方格开始移动骑士,相继地到达所有的64个方格,进入每个方格一次且仅进入一次。通常情况下,我们用如下方法表示一个解:即把数字0,1,…,63放入棋盘中的方格来表示到达这些方格的顺序。解决骑士巡游问题更具创意的方法之一是由J. C. Warnsdorff在1823年提出的。其规则是:骑士总是移向具有最少出口且没有到达过的方格之一
Knight
- 1. 我们采用了回溯法和贪婪策略来求解国际象棋中的骑士巡游问题。对于棋盘中的每个位置最多只有8个方向可以选择,我们可以定义两个数组var_x[MAX_DIR]和var_y[MAX_DIR]用来记录往这8个方向走相对应的坐标变化情况(其中MAX_DIR的值为8)。每走一步,都从方向0开始试探到方向7,而在这里我加入贪婪策略来提高算法的效率,即在选择方向时,我们优先选择具有如下性质的方向:当我们沿着这个方向走一步后,走到这一步后可选的方向最少(最多有8个方向选择)。这样一直往前走, 当走到一个没有方
KnightParade
- 骑士巡游(knight s tour)问题,自从十八世纪初以来,这个问题吸引了数学家们的兴趣,也使热心者们感到困惑。简而言之,这个问题要求从棋盘上任意给定的方格开始移动骑士,相继地到达所有的64个方格,进入每个方格一次且仅进入一次。
knight
- 实现了骑士巡游,此为大学中数据结构老师要求实现的
CavalierTravel
- 这一个骑士巡游程序,用JAVA编写的,采用的是对每个位置进行计算度(所能走的方向数),然后取最小的一个度来进行骑士巡游-a parade this procedure, prepared with Java, the location of each calculated degrees (can go in the direction of a few), then take the smallest for a parade to Cleveland
qishixunyou
- 里面用两种方法实现了骑士巡游问题,分别是回溯的方法,和贪心加回溯的方法。-There two ways to achieve a parade Cavalier problems are way back, and greedy plus retrospective approach.
ImgSecu
- 图像处理中的图像细节隐藏程序,算法采用的是骑士巡游算法-Image processing procedures Hide image detail, the algorithm used is algorithm Cavalier Parade
73
- 此代码解决了骑士巡游问题,希望对大家有用,有兴趣的看下!-This code solved the problem of Knight-tour, I hope useful for all of us, are interested in facie!
HorseTravel
- 改进了骑士巡游算法,速度更快,使用了权值的思路-Knight-tour algorithm improved, faster, and the idea of using the weight
第6次实验_第01小组
- 国际象棋中的骑士巡游问题,利用回溯法求解,output.txt中输出所得到的巡游路径坐标集合((Parade route chess knight parade problems solved by backtracking, output.txt output the resulting set of coordinates))