搜索资源列表
24dianyouxi
- 游戏者将得到6个不同的自然数作为操作数, 以及另外一个自然数作为理想目标数,而您的任务是对这6个操作数进行适当的算 术运算,要求运算结果小于或等于理想目标数,并且我们希望所得结果是最优的, 即结果要最接近理想目标数。-Games will be six different natural numbers as operands, and another one as the ideal target of natural number, and your task is to the
puzzle
- 综合课程设计,成品包含: 17个java源文件,1个生成的.jar文件,1份报告书等 主要功能说明: (1).游戏设有初级、中级、高级的难度选项; (2).在完成拼图的过程中,可以查看完整图片的功能; (3).可以自由加载图片,不受图片数量、大小、格式限制,切割过程自动完成; (4).游戏具有计时、计录步数的功能,并能实时显示; (5).游戏自动过滤无解情况的拼图状态; (6).游戏中任何一个状态,计算机可以自动求取最优解,并模拟出路径。 (7).在模拟中,可
BOX
- 推箱子游戏,计算所有推箱子游戏的最优解法-Sokoban game, calculating the optimal solution for all Sokoban game
migong
- 迷宫问题,解决迷宫设计的路径问题,实现最优的通路-Maze and solve the maze design path to achieve the optimal path
PiecePuzzle
- 华容道游戏 1,有多少种开局; 2,判断有解; 3,给出最优解; 4,计算机求解。-1, how many kind of opening 2, determine solution 3, we give the optimal solution 4, the computer to solve.
jyyEight_Num_Fengart
- 八数码问题的解决,包括三种路径的查找最优解,例如:深度优先查找,广度优先查找。-Eight digital problem solving, including three kinds of paths to find an optimal solution, for example: depth-first search, breadth-first search.
els
- 俄罗斯方块源代码欢迎大家一块讨论学习,大家一块儿写出最优的代码-Tetris source code we welcome a discussion of learning, we write optimal code together
maze-game
- 一个用C语言写的迷宫游戏 定义一个8*8的格子,这64个格子是人物可以移动到的位置;障碍物定义为两个相邻格子之间的挡板,0或1两种状态。类似上述方法,可以定义整个迷宫的布局,64个格子,对应数目的挡板,迷宫出口,迷宫入口,小人,这些元素。 文件里,需要存储迷宫大小,挡板位置,出口,入口。 小人在任一位置,可以向四个方向移动,有挡板则可以移动,没挡板则不可以移动。 最优路径的提示,使用A星路径算法去做,实质是一个启发式广度优先遍历。-A written in C language