How to write this pseudocode in matlab?
古いコメントを表示
Dijkstra algorithm's - pseudo code
- For each node n in the graph - 0 n.distance = Infinity
- Create an empty list.
- start.distance = 0,add start to list.
- While list not empty
- Let current = node in the list with the smallest distance, remove current from list
- For each node, n that is adjacent to current
If n.distance > current.distance + length of edge from n to current
n.distance = current.distance + length of edge from n to current
n.parent = current
add n to list if isn't there already
2 件のコメント
Walter Roberson
2020 年 7 月 3 日
Chanya Selvan:
If you feel that the question is not clear, then as you are the person who posted the question, it is up to you to clarify it.
回答 (2 件)
Walter Roberson
2020 年 7 月 2 日
0 投票
Chanya Selvan
2020 年 7 月 3 日
0 投票
カテゴリ
ヘルプ センター および File Exchange で Dijkstra algorithm についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
