Iterative deepening depth-first search

ID: iterative-deepening-depth-first-search

Iterative Deepening Depth-First Search (IDDFS) is a search algorithm that combines the space-efficiency of Depth-First Search (DFS) with the completeness of Breadth-First Search (BFS). It is particularly useful in scenarios where the search space is very large, and the depth of the solution is unknown.

New to topics? Read the docs here!