Iterative Deepening Depth First Search
What is the space complexity of IDDFS? (Here b is the branching factor, d is the depth of the goal node, and m is the maximum depth of the graph.)
In a graph traversal problem, the goal node is located at a depth of 4. How many iterations of IDDFS would be needed to guarantee finding the goal node?
What happens when visited nodes are not kept track of in IDDFS?
Explanation
Explanation
Explanation
Explanation
Explanation
Consider the following graph: A->B, A->C, B->D, B->E, C->F. What will be the order of nodes visited in IDDFS starting from node A?
Consider the following graph: A->B, A->C, B->D, D->E. How many nodes will be visited before reaching node C in IDDFS and DFS?