1 Star 0 Fork 0

dungang / PathFinder

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
README.txt 653 Bytes
一键复制 编辑 原始数据 按行查看 历史
Kevin Wang 提交于 2015-02-21 18:50 . latest changes
This project contains a Java implementation of A* (A star) search algorithm
that is widely used in path finding and graph traversal, and Dijkstra algorithm
that is used in Cisco router shortest path finding.
There are great similarities in the two algorithms, with the difference being that
A* has a heuristic mechanism while Dijkstra does not. With the heuristic, A*
usually outperforms Dijkstra in speed in finding a path, however, unlike Dijkstra,
the path A* finds may not always be the optimal one.
A Java/Swing graphical demo program is provided to animate the progress of
path searching, and the two resulted paths side by side for comparison.
1
https://gitee.com/dungang/PathFinder.git
git@gitee.com:dungang/PathFinder.git
dungang
PathFinder
PathFinder
master

搜索帮助