搜索资源列表
8数码hot
- 8数码问题,我本科毕业设计,vc6.0制作,可动态演示!-eight digital, I graduated design, vc6.0 production, dynamic demo!
8数码问题 A星算法求解
- 8数码问题的A星解法-8 issue of A Star Solution
8数码问题的源代码
- 我的文件是用VC设计的一个求解人工智能中8数码问题的程序。-my VC document is designed to solve a digital AI 8 issue procedures.
8数码
- 8数码问题
8数码问题解法
- 八数码问题的多种解法,包括广度搜索、深度搜索和双向搜索等。
8数码问题
- 8数码的程序,人工智能的一个问题求解
8数码游戏
- 又是一个小游戏——数码游戏 的源代码,大家边玩边学吧!-is a small game-- digital game's source code, we have been learning to play side!
8888
- 人工智能的8数码问题的求解-eight digital artificial intelligence problem solving
8数码问题
- 人工智能中的A*算法解决8number问题-AI A* algorithm to solve the problem 8number
8数码
- 八数码问题的启发式搜索!-the heuristic search!
8数码难题
- 八数码难题解决实现方法-eight digital method to solve problems
8数码问题的源代码
- 我的文件是用VC设计的一个求解人工智能中8数码问题的程序。-my VC document is designed to solve a digital AI 8 issue procedures.
8数码hot
- 8数码问题,我本科毕业设计,vc6.0制作,可动态演示!-eight digital, I graduated design, vc6.0 production, dynamic demo!
8
- 8数码类,人工智能上的。现在正在学习。8数码类8数码类8数码类-8 digital category, the artificial intelligence. Are learning now. Class 8 Digital 8 Digital 8 Digital category category
8
- 8数码问题的C语言版本 可以借鉴 希望有帮助-8 digital issues of the C language version can draw hope to have help
8
- 8数码问题的解决程序,人工智能的的课程实验,mfc实现的界面。-8 digital issues resolution procedures, courses in artificial intelligence experiments, mfc achieve interface.
project1
- 8数码问题,A*和深度有限算法分别来完成这样的任务。-8 Puzzle Problem, A* and depth of the finite difference method to accomplish this task.
8数码
- 需要说明的是:本文示例图中的目标状态在计算上是最快捷的,首先取数很方便,一般地查看目标在第i个位置上的值,则需要访问数组goal[i],而这里goal[i]==i,故而无需访问数组;第二,要想知道数码n的目标位置,则需要找到goal[i]==n,然后row=i/3,col=i%3. 但是这里的话,row=n/3,col=n%3. 当我们用8位无符号整型来表示各个数码值(0~8)时,n/3和n%3操作是非常快的,比访问数组还快。 程