Skip to content

JaskJohin/Path-Finding-Using-A-Star

Folders and files

NameName
Last commit message
Last commit date
Feb 23, 2024
Apr 26, 2023
May 10, 2023
Jul 17, 2023

Repository files navigation

Path Finding Using A Star

A* is a graph traversal and path search algorithm, which is used in many fields of computer science due to its completeness, optimality, and optimal efficiency. One major practical drawback is its major space complexity, as it stores all generated nodes in memory. Thus, in practical travel-routing systems, it is generally outperformed by algorithms which can pre-process the graph to attain better performance, as well as memory-bounded approaches; however, A* is still the best solution in many cases.

About

Path finding using the A* algorithm

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published