Tagged Questions
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 graph case) and explores as far as possible along each branch before backtracking.
21
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
1answer
232 views
How to properly label branches of a tree in a depth first search
I have a tree with a structure like this:
__2__3__4
/ \__5__6
0__1___7/__8__9
\\
\\__10__11__12
\__ __ __
13 14 15
Node 1 has four children (2,7,10,13), nodes 2 ...
7
votes
2answers
123 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
1answer
126 views
Parallel depth-first search in Erlang is slower than its sequential counterpart
I am trying to implement a modified parallel depth-first search algorithm in Erlang (let's call it *dfs_mod*).
All I want to get is all the 'dead-end paths' which are basically the paths that are ...
6
votes
1answer
211 views
Complex Continuation in F#
All of the continuation tutorials I can find are on fixed length continuations(i.e. the datastructure has a known number of items as it is being traversed
I am implementing DepthFirstSearch ...
6
votes
2answers
902 views
Finding the longest cycle in a directed graph using DFS
I need to find the longest cycle in a directed graph using DFS.
I once saw this Wikipedia article describing the way of doing this, and I think it approached the problem something like marking the ...
6
votes
2answers
470 views
How to find the longest path between two nodes in Lisp?
I need to program a Lisp function that finds the longest path between two nodes, without revisiting any nodes. Though, if the start and end node are the same, this node can be revisited. The function ...
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
172 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
478 views
C++ pass by reference
I've recently (4 days) started to learn C++ coming from C / Java background. In order to learn a new language I ussualy start by re-implementing different classical algorithms, as language specific as ...
4
votes
1answer
97 views
Peg solitaire – checking pegs vs. checking holes in a depth-first search
I am trying to solve Peg Solitaire with a depth-first search algorithm – it
should be possible to solve the game since "modern computers can easily examine
all game positions in a reasonable time". ...
4
votes
3answers
181 views
Find all possible paths from one vertex in a directed cyclic graph in Erlang
I would like to implement a function which finds all possible paths to all possible vertices from a source vertex V in a directed cyclic graph G.
The performance doesn't matter now, I just would like ...
4
votes
2answers
132 views
What's the best way to perform DFS on a very large tree?
Here's the situation:
The application world consists of hundreds of thousands of states.
Given a state, I can work out a set of 3 or 4 other reachable states. A simple recursion can build a tree ...
4
votes
2answers
613 views
algorithm to enumerate all possible paths
Consider the following graph:
I'm trying to find a way to enumerate all possible paths from a source node to a target node. For example, from A to E, we have the following possible paths:
A B C D ...
4
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
2answers
2k views
Checking for odd cycles in an undirected graph
I'm back with another similar question. I am currently working on a Java program that will check if a graph is 2-colorable, i.e. if it contains no odd cycles (cycles of odd number length). The entire ...
3
votes
4answers
281 views
DFS: How to indicate the nodes of the connected components in C++
I am making a problem of ACM competitions to determine the number of connected components that have an undirected graph G and vertices belonging to each component. 've Already done with a DFS ...
3
votes
2answers
157 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
1answer
542 views
Implementing depth-first graph traversal
I have conflicting information about depth first traversal and could use some help in understanding how to build a program. Given a certain graph, I want to print a sequence of vertices. The user will ...
3
votes
2answers
235 views
Using boost::depth_first_search with Visitor
As the title suggests, I'm using boost::depth_first_search and using a Visitor (inheriting from boost::default_dfs_visitor) to implement some algorithm.
However, during the algorithm's run, I want to ...
3
votes
3answers
277 views
.NET Performance: Deep Recursion vs Queue
I'm writing a component that needs to walk large object graphs, sometimes 20-30 levels deep.
What is the most performant way of walking the graph?
A. Enqueueing "steps" so as to avoid deep recursion
...
3
votes
3answers
182 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
0answers
237 views
DFS in Perl (or Java or C++ …)
I have done some in 3D computer graphics but am somewhat new to graph
theory.
In particular I have been looking at and trying to solve my problem using a
depth first search (DFS) as described in ...
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
627 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
4answers
796 views
extra space for recursive depth-first search to store paths
I am using depth-first search to identify paths in a directed weighted graph, while revisiting nodes that belong to a cycle, and setting cutoff conditions based on total distance traveled, or stops ...
3
votes
4answers
451 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 ...
2
votes
1answer
70 views
Knight's tour depth-first search infinite loop
I'm trying to solve the knight's tour problem using a depth-first search algorithm. The algorithm seems te be looping whenever it has two choices that both result in a dead end. I understand that this ...
2
votes
2answers
111 views
Difference between visitor design pattern and depth first search?
A depth first search seem able to perform similar functions as the visitor design pattern. A visitor allows you to define some data structures and add operations on those structures (in the form of ...
2
votes
1answer
439 views
Depth-first-search maze generation algorithm with blocks instead of walls
I am trying to implement the depth first search algorithm into my game. I have been studying this web page: http://www.mazeworks.com/mazegen/mazetut/index.htm , only to find that I wouldn't be able to ...
2
votes
3answers
136 views
StackOverflow error: How can I avoid it or turn this DFS into an iterative one?
I'm using Depth First Search for maze generation.
The adjacency matrix of M*N vertices is traversed in a random order using DFS, I'm only interested in generating a random route.
The thing works ...
2
votes
1answer
326 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 ...
2
votes
1answer
298 views
depth-first algorithm in python does not work
I have some project which I decide to do in Python. In brief: I have list of lists. Each of them also have lists, sometimes one-element, sometimes more. It looks like this:
rules=[
...
2
votes
1answer
230 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
102 views
What does it mean to expand a node?
I'm trying to understand the algorithm for a Depth-Limited-Search on wikipedia, and I'm trying to figure out what exactly it means to expand a node. I attempted to search for an answer but all I got ...
2
votes
2answers
219 views
Stop boost::depth_first_search along a particular depth if certain criteria is met
I'm using BGL to store my DAG. Vertices have states. Given a change in state in one of the vertices i want to update dependent vertices. This i'm able to do using boost::depth_first_search and a ...
2
votes
1answer
146 views
Performing depth-first algorithm from a specific vertex
I am trying to find a way to perform the depth-first algorithm from a specific vertex by using the boost graph library.
The depth-first algorithm provided by Boost library evaluates the graph ...
2
votes
2answers
200 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
2answers
968 views
Find all cycles in graph, redux
I know there are a quite some answers existing on this question. However, I found none of them really bringing it to the point.
Some argue that a cycle is (almost) the same as a strongly connected ...
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
182 views
Pruning: When to Stop?
When does pruning stop being efficient in a depth-first search? I've been working on an efficient method to solve the N-Queens problem and I'm looking at pruning for the first time. I've implemented ...
2
votes
4answers
2k views
Depth-First search in Python
I'm trying to do a Depth-First search in Python but it's not working.
Basically we have a peg-solitaire board:
[1,1,1,1,1,0,1,1,1,1]
1's represent a peg, and 0 is an open spot. You must move a ...
2
votes
3answers
416 views
Connectivity of a Graph
int dfs(int graph[MAXNODES][MAXNODES],int visited[],int start) {
int stack[MAXNODES];
int top=-1,i;
visited[start]=1;
stack[++top]=start;
while(top!=-1)
{
start=stack[top];
...
2
votes
1answer
477 views
Finding biggest area of adjacent numbers in a matrix
This is NOT a homework. I'm a beginner in programming, and also this is my first post here - please bear with me.
I was not able to find similar questions posted here.
In a beginner's book, I ...
1
vote
4answers
69 views
Test depth-first tree
I made a Java program to browse a tree with depth-first. The program is correct, but the choice of the son of a node is random. for example in this tree :
sometimes, the result is:
A-B-E-C-F-D
...
1
vote
1answer
59 views
Recursive backtracker maze generation algorithm stack loop
I am having a problem with an algorithm I wrote for creating a ascii maze. The code is using a recursive back tracker, and the pseudo code essentially is:
1. Make the initial cell the current cell ...
1
vote
2answers
84 views
Depth First Search Bug
I'm working on a programming assignment (in java) to solve a fifteen-puzzle sort of thing. The first part is to use depth first search to find a solution. I want it to be able to solve an arbitrarily ...
1
vote
2answers
78 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
69 views
Why does this solution say the DFS have to run in reverse?
Wouldn't it keep finding t if we start at s?
Give a linear-time algorithm that takes as input a directed acyclic graph G = (V,E) and two vertices s and t, and returns the number of paths from s to ...