Please enable JavaScript.
Coggle requires JavaScript to display documents.
Pathfinding Algorithms - Coggle Diagram
Pathfinding Algorithms
Search Tree
Search tree is tree like data structure which representing sequence of actions, states exploring by an algorithm to find a path from a starting point to the goal.
-
Searching algorithms
-
-
-
-
-
Depth-First Search
-
Used in navigating puzzles, finding paths in solution where depth unknown
-
Bidirectional Search
Two simultaneous searches are run , oe from start and one from goal
-
-
-
-
-
-