Tagged Questions

1
vote
2answers
248 views

Iterative deepening vs depth first search

I keep reading about iterative deepening, but I don't understand how it differs from depth first search. So depth first search keeps going deeper and deeper I understand that. In iterative deepening ...
1
vote
3answers
2k views

Difference between Breadth First Search, and Iterative deepening

I understand BFS, and DFS, but for the life of me cannot figure out the difference between iterative deepening and BFS. Apparently Iterative deepening has the same memory usage as DFS, but I am unable ...
1
vote
1answer
826 views

Iterative-deepening depth first search using limited memory

This is a follow-up to Find first null in binary tree with limited memory. Wikipedia says that iterative-deepening depth first search will find the shortest path. I would like an implementation that ...
0
votes
1answer
120 views

Writing a DFS with iterative deepening without recursion

So currently i have a DFS with the following pseudocode procedure DFS(Graph,source): create a stack S push source onto S mark source while S is not empty: pop an ...
0
votes
1answer
260 views

Complete Iterative Deepening Depth First Search

At the minute I have an object that looks a bit like this. C# public class Step { int id; List<Step> nextSteps; } And I'm trying to convert it into another object that looks pretty ...
0
votes
0answers
25 views

How is iterative deepening more efficient than just scanning the nodes at a specified depth level.

Isn't it redundant to rescan n-1 levels of nodes for each iteration?