Iterative Deepening Depth First Search
What kind of data structure does IDDFS use?
What does the iterative deepening part of IDDFS refer to?
What is the time complexity of IDDFS in terms of the branching factor (b) and the depth of the goal node (d)?
When is IDDFS not complete?
In which cases would IDDFS be preferred over DFS?