Tagged Questions
6
votes
10answers
2k views
What is breadth-first search useful for?
Usually when I've had to walk a graph, I've always used depth-first search because of the lower space complexity. I've honestly never seen a situation that calls for a breadth-first search, although ...
3
votes
2answers
160 views
Why is Depth-First Search said to suffer from infinite loops?
I have read about DFS and BFS many times but I have this doubt lingering my mind since long. In a lot of articles it is mentioned that DFS can get stuck in infinite loops.
As far as I know, this ...
3
votes
3answers
183 views
Why are you guaranteed to find your result if it is in the graph with BFS but not with DFS?
I've read somewhere that DFS is not gaurenteed to find a solution while BFS is.. why? I don't really get how this is true.. could someone demonstrate a case for me that proves this?
2
votes
1answer
328 views
Recursive Searching in Java
So I've been writing a program for the game boggle. I create a little board for the user to use, but the problem is I don't know how to check if that word is on the board recursively. I want to be ...
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
2answers
325 views
Input/output of breadth-first vs. depth-first search
My question isn't really about the mechanism of either search type. I feel it's a lot more mundane than that - I don't understand the input and output of either. More specifically, in CLRS, BFS takes ...
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 ...
0
votes
1answer
32 views
Repeating nodes on a search tree? (AI)
I am doing the following question:
Consider the 3-puzzle problem, where the board is a 2X2 matrix. There are three tiles numbered 1,2, and 3, and there is one blank tile. There are four operators ...
0
votes
2answers
108 views
depth-first graph search that returns path to goal
I've been trying this all week and cannot, for the life of me, figure it out.
I know that I need to have a helper function that will recurse and return pathSoFar. I can't seem to get my head around ...