Iterative deepening A*
ID: iterative-deepening-a
Iterative Deepening A* (IDA*) is an informed search algorithm that combines the benefits of depth-first search (DFS) and the A* search algorithm. It is particularly useful in scenarios where memory efficiency is a concern, as it does not need to store all nodes in memory like A* does. Instead, IDA* seeks to efficiently explore the search space while managing memory usage effectively.
New to topics? Read the docs here!