Dijkstra Algorithm Consistent with Cyclic Paths

版本 1.0.0.0 (28.8 KB) 作者: Yi Wang
This function and attached examples show finding shortest-paths (including cyclic paths) from a dire
5.8K 次下载
更新时间 2005/6/24

无许可证

Given adjacent matrix (transmat) and starting/ending node (pathS, pathE), this function finds the shortest-path (path) that connecting pathS and pathE, and returns the cost (cost):

[path, cost]=dijkstra(pathS, pathE, transmat);

NOTE: Except for the simple interface, the pathS and pathE can be the same node, i.e., this implementation can find _cyclic_ paths.

引用格式

Yi Wang (2024). Dijkstra Algorithm Consistent with Cyclic Paths (https://www.mathworks.com/matlabcentral/fileexchange/7869-dijkstra-algorithm-consistent-with-cyclic-paths), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R14
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Dijkstra algorithm 的更多信息
致谢

参考作品: Dijkstra Shortest Path Routing

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
版本 已发布 发行说明
1.0.0.0

corrent Summary