文件名称:A星算法基本教程
文件大小:114KB
文件格式:ZIP
更新时间:2020-11-13 03:58:50
A*算法源码 教程
List of Files ReadMe.txt : Contains List of Files and description Astar_tutorial.pdf : Description of A* algorithm, examples A_star1.m : This is the main file that contains the algorithm. This needs to be executed to run the program. distance.m : This is a function that calculates the distance between 2 nodes. min_fn.m : This function takes the list OPEN as one of its arguments and returns the node with the smallest cost function. Node_index.m : This function returns the index of the location of a node in the list OPEN. Expand_array.m : This function takes a node and returns the expanded list of successors, with the calculated fn values. One of the criteria being none of the successors are on the CLOSED list. insert_open.m : This function populates the list OPEN with values that have been passed to it.
【文件预览】:
license.txt
Astar
----min_fn.m(1KB)
----insert_open.m(596B)
----node_index.m(297B)
----distance.m(201B)
----Astar_tutorial.pdf(78KB)
----A_Star1.m(7KB)
----screenShot.jpg(43KB)
----expand_array.m(2KB)
----ReadMe.txt(1KB)