Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 584 Bytes

untitled-1.md

File metadata and controls

15 lines (9 loc) · 584 Bytes
description
Around the world in 80 days, maybe less.

Dijkstra Algorithm

The start and destination nodes, along with many intermediate nodes like B,C,D are considered for path planning. Going along a path from one node to other carries a cost along with it. The algorithm aims to minimise this cost while going from Start to End.

The computational complexity for this algorithm increases quadratically with the number of nodes.

For more information read:

{% embed url="https://en.wikipedia.org/wiki/Dijkstra%27s_algorithm" %}