Tagged Questions
22
votes
4answers
12k views
Breadth First Vs Depth First
When Traversing a Tree/Graph what is the difference between Breadth First and Depth first? Any coding or pseudocode examples would be great.
7
votes
2answers
124 views
Random-first search?
The two most common ways to traverse a graph are breadth-first search and depth-first search. Both of these search algorithms follow a common template:
Create a worklist W, seeded with the start ...
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 ...
5
votes
3answers
173 views
Fingerprint tree generation
There is group of people [let's say 1874 of them], all representing different companies [lets say 236 of them] in the world. My task is to best identify what company each person works for. The trick ...
5
votes
4answers
3k views
Why DFS and not BFS for finding cycle in graphs
Predominantly DFS is used to find a cycle in graphs and not BFS. Any reasons? Both can find if a node has already been
visited while traversing the tree/graph.
4
votes
4answers
452 views
Find first null in binary tree with limited memory
I have a binary tree where each node can have a value.
I want to find the node in the tree that has value null and is closest to the root. If there are two nodes with the same distance from the ...
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?
3
votes
4answers
1k views
breadth first or depth first search
I know how this algorithm works, but cant decide when to use which algorithm ?
Are there some guidelines, where one better perform than other or any considerations ?
Thanks very much.
3
votes
7answers
629 views
Best and easiest algorithm to search for a vertex on a Graph?
After implementing most of the common and needed functions for my Graph implementation, I realized that a couple of functions (remove vertex, search vertex and get vertex) don't have the "best" ...
2
votes
1answer
231 views
Question about breadth-first completeness vs depth-first incompleteness
According to Norvig in AIMA (Artificial Intelligence: A modern approach), the Depth-first algorithm is not complete (will not always produce a solution) because there are cases when the subtree being ...
2
votes
2answers
201 views
How can I remember which data structures are used by DFS and BFS?
I always mix up whether I use a stack or a queue for DFS or BFS. Can someone please provide some intuition about how to remember which algorithm uses which data structure?
2
votes
5answers
2k views
When is it it practical to use DFS vs BFS?
I understand the differences between DFS and BFS, but I'm interested to know when it's more practical to use one over the other? Could anyone give any examples of how DFS would trump BFS and vice ...
2
votes
1answer
1k views
Explain BFS and DFS in terms of backtracking
Wikipedia about DFS
Depth-first search (DFS) is an
algorithm for traversing or searching
a tree, tree structure, or graph. One
starts at the root (selecting some
node as the root in the ...
1
vote
2answers
79 views
Should I use breadth first or depth first for searching a filesystem for a predetermined number of errors?
I have a large filesystem that I need to traverse for errors. Each file knows whether or not it contains an error, so I simply need to travel to each node and check whether there is an error there. ...
1
vote
2answers
214 views
Enumerating all paths in a tree
I've tried and tried; searched and searched, but could not really find an algorithm to solve my problem. I want to enumerate all paths in a tree, (not just simple paths) those which start and end with ...
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
307 views
Difference between DFS and BFS
I am reading about DFS in Introduction to algorithms by cormen. Following is text
snippet.
Unlike BFS, whose predecessor subgraph forms a tree, the predecessor
subgrpah produced by DFS may be ...
0
votes
2answers
127 views
Explanation of runtimes of BFS and DFS
Why are the running times of BFS and DFS O(V+E), especially when there is a node that has a directed edge to a node that can be reached from the vertex, like in this example in the following site
...
0
votes
0answers
52 views
search synsets using rita.wordnet
i'm developing a tool to search synsets from wordnet and match them with uml class name using java. currently, i'm using rita.wordnet to get the synsets from wordnet. unfortunately, I am still not ...
0
votes
0answers
588 views
Java: Solving 15 Puzzle using Fitness functions
I am currently working on a project to solve a 15 Puzzle using fitness functions. There are 3 kinds of fitness functions that can be used,
Fitness function1= 1 - (number of misplaced tiles/total ...
0
votes
3answers
771 views
Maze Solving using graph
Hey i was in a local programming competition and they asked me this question which i could not do so please help me on this one.
Write a program that loads from a file the size of a maze and then the ...
0
votes
0answers
607 views
Python optimization with dfs/bfs searches
Can you see any immediately changes I can do to increase speed and optimization in the script below?
We are suppose to write a script which implements dfs/bfs searches to find "ratatosk". Input is ...
0
votes
5answers
4k views
Depth first search using java
I want to implement DFS (Depth first search) and BFS using java.
Does java have a built in tree data structure that I can use readly? Or any other thing that I can use?