Tagged Questions
In graph theory, breadth-first search (BFS) is a graph search algorithm that begins at the root node and explores all the neighboring nodes. Then for each of those nearest nodes, it explores their unexplored neighbor nodes, and so on, until it finds the goal.
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.
8
votes
7answers
2k views
Efficiently finding the shortest path in large graphs
I'm looking to find a way to in real-time find the shortest path between nodes in a huge graph. It has hundreds of thousands of vertices and millions of edges. I know this question has been asked ...
7
votes
2answers
125 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 ...
7
votes
6answers
7k views
Performing Breadth First Search recursively
Let's say you wanted to implement a breadth-first search of a binary tree recursively. How would you go about it?
Is it possible using only the call-stack as auxiliary storage?
6
votes
2answers
622 views
breadth-first-search on huge graph with little ram
I currently have a graph that has about 10 million nodes and 35 million edges. For now the complete graph is loaded into memory at program start. This takes a couple of minutes (it is Java after all) ...
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 ...
6
votes
3answers
2k views
Shortest Root to Leaf Path
What is the easiest way, preferably using recursion, to find the shortest root-to-leaf path in a BST (Binary Search Tree). Java prefered, pseudocode okay.
Thanks!
5
votes
2answers
139 views
Listing values in a binary heap in sorted order using breadth-first search?
I'm currently reading this paper and on page five, it discusses properties of binary heaps that it considers to be common knowledge. However, one of the points they make is something that I haven't ...
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
1answer
275 views
Termination Criteria for Bidirectional Search
According to most of the reading I have done, a bidirectional search algorithm is said to terminate when the "forward" and "backward" frontiers first intersect. However, in Section 3.4.6 of Artificial ...
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.
5
votes
2answers
958 views
How to functionally generate a tree breadth-first. (With Haskell)
Say I have the following Haskell tree type, where "State" is a simple wrapper:
data Tree a = Branch (State a) [Tree a]
| Leaf (State a)
deriving (Eq, Show)
I also have a ...
5
votes
5answers
4k views
Printing BFS (Binary Tree) in Level Order with _specific formatting_
To begin with, this question is not a dup of this one, but builds on it.
Taking the tree in that question as an example,
1
/ \
2 3
/ / \
4 5 6
How would you modify your program ...
4
votes
3answers
394 views
Breadth first search with three-letter words, optimization
I'm using a breadth-first search algorithm in Python to find the shortest "path" from a three-letter word to another. I've got it working but the performance is horrible and I suspect my word children ...
4
votes
2answers
348 views
Minimizing memory usage of a breadth first search
In my the following code, I am traversing a graph through breadth first search. The code constructs the graph while it is traversing. This is a very large graph, with a fan out of 12. Due to this, any ...
4
votes
2answers
219 views
Nosql DB for undirected graphs?
I want to store a graph of millions of nodes where each node links to another in an undirected manner (point A to B, automatically B points to A). I have examined Neo4j, OrientDB as possible solutions ...
4
votes
2answers
1k views
Why use Dijkstra's if Breadth First Search can do the same and fast?
Both can be used to find the shortest path from single source. BFS runs in O(E+V) while Dijkstra's runs in O((V+E)*log(V))
But I've seen Dijkstra used a lot like in routing protocols
4
votes
6answers
522 views
PacMan character AI suggestions for optimal next direction
Firstly, this is AI for PacMan and not the ghosts.
I am writing an Android live wallpaper which plays PacMan around your icons. While it supports user suggestions via screen touches, the majority of ...
4
votes
3answers
2k views
How to detect if a directed graph is cyclic?
How can we detect if a directed graph is cyclic? I thought using breadth first search, but I'm not sure. Any ideas?
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
82 views
Is it possible to apply breadth-first search algorithm of boost library to matrix?
My task is to find the shortest way in a matrix from one point to other. It is possible to move only in such direction (UP, DOWN, LEFT, RIGHT).
0 0 0 0 1 0 0 0
1 0 0 0 0 0 0 0
0 0 0 1 0 1 F 0
0 1 0 1 ...
3
votes
2answers
60 views
Graph Minimum Spanning Tree using BFS
This is a problem from a practice exam that I'm struggling with:
Let G = (V, E) be a weighted undirected connected graph, with positive
weights (you may assume that the weights are distinct). ...
3
votes
2answers
196 views
Shortest distance algorithm Python
I wanted to create a simple breadth first search algorithm, which returns the shortest path.
An actor information dictionary maps and actor to the list of movies the actor appears in:
actor_info = { ...
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
2answers
240 views
Breadth First Search question C++
This is my first time programming C++ and I've been asked to code a breadth first search where given this class
class route {
friend ostream& operator<<(ostream& os, const ...
3
votes
1answer
199 views
Find articulation vertices in undirected graph by BFS
I have a problem at undirected graphs that sounds like this: "Do a breadth-first traversal of the graph and list the articulation points of the graph.". I found only algorithms that use DFS to find ...
3
votes
1answer
213 views
Lazy, breadth-first traversal of a Rose Tree?
I'm trying to refactor a component that currently produces a Seq[X] using a fairly expensive recursive algorithm so that it produces a Stream[X] instead, so X's can be loaded/calculated on-demand, and ...
3
votes
1answer
251 views
Lisp - Hill Climbing
Ok I have a Lisp implementation of BFS that I am trying to convert to do a hill climbing search.
Here is what my BFS code looks like:
; The list of lists is the queue that we pass BFS. the first ...
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" ...
3
votes
3answers
3k views
Breadth-First in Prolog
What is the general idea of using breadth-first over the default depth-first search scheme in Prolog?
Not taking infinite branches?
Is there any general way to use breadth-first in Prolog? I've been ...
2
votes
2answers
86 views
Simple bfs example… I don't get it
I'm trying to understand how BFS works with a queue to figure out the shortest path. Let's say I have a grid:
1--2--3
| | |
4--5--6
| | |
7--8--9
|
0
Starting spot is '9' and target is '0'.
...
2
votes
2answers
79 views
Shortest path in a directed, unweighted graph with a selection criterion between multiple shortest paths?
I am looking for the best way to solve this variation on the shortest-path problem:
I have a directed graph with unweighted edges. I need to be able to find the shortest path between any two nodes, ...
2
votes
1answer
111 views
Breadth First Search on a Binary tree
I'm trying to traverse on a binary tree to find someone's ID by using his/her ID number. When I debug this function it works well, but on the other hand, when I directly run, it terminates itself.. ...
2
votes
1answer
114 views
How does a Breadth-First Search Work When Looking for Shortest Path (Java)
I've done some research, and I seem to be missing one small part of this algorithm. I understand how a Breadth-First Search works, but I don't understand how exactly it will get me to a specific path, ...
2
votes
4answers
81 views
Sequence generation/ breadth first searching
Essentially what I'm doing is trying to solve a Rubik's cube with a breadth first search of all possible moves. I know this isn't the best way to solve the cube, but I only need it for very short ...
2
votes
1answer
62 views
Propositional Theorem Proving [closed]
How can we use Breadth First Search as a strategy for propositional theorem proving (I can't see a clear problem formulation: what are the actions available at each state and what a state is).
I've ...
2
votes
3answers
101 views
What's the best way of getting the next-nearest neighbors in a graph?
I need to calculate something whose value is given by the following inneficient pseudo python code:
def foo(a,b):
tmp = 0
for i in graph.nodes():
for j in graph.nodes():
tmp += ...
2
votes
2answers
242 views
Haskell space leak in implementation of BFS
I have been banging my head against a Haskell space leak (of the stack overflow kind, naturally) for a few straight days. It's frustrating because I'm attempting to mimic the BFS algorithm straight ...
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
379 views
Prolog get elements in different lists with BFS
i'm new at prolog and to improve my skills i'm trying to make some exercise.
At the moment I'm stuck with a BFS, let assume the tree is something like this:
...
2
votes
2answers
362 views
Python usage of breadth-first search on social graph
I've been reading a lot of stackoverflow questions about how to use the breadth-first search, dfs, A*, etc, the question is what is the optimal usage and how to implement it in reality verse simulated ...
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 ...
2
votes
2answers
1k views
BFS traversal of directed graph from a given node
My understanding of basic BFS traversal for a graph is:
BFS
{
Start from any node . Add it to que. Add it to visited array
While(que is not empty)
{
remove head from queue. Print node;
...
2
votes
4answers
1k views
Can this breadth-first search be made faster?
I have a data set which is a large unweighted cyclic graph The cycles occur in loops of about 5-6 paths. It consists of about 8000 nodes and each node has from 1-6 (usually about 4-5) connections. I'm ...
2
votes
1answer
197 views
Do any POSIX functions or glibc extensions implement a breadth-first file tree walk?
I am writing a daemon that utilizes inotify to monitor file access and it is critical that I don't miss anything on a recursive search. I found this interesting idea and have begun to implement it.
...
2
votes
3answers
594 views
How can I modify the breadth-first search algorithm to also include the solution path?
I have the following pseudo-code in my book for a breadth-first search:
function breadth_first_search:
begin
open := [Start]
closed := [];
while open != [] do
...