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.
0
votes
0answers
17 views
How can i tell if there is a path between all vertices using recursive Depth First Search algorithm?
I'm trying to tell if a graph is strongly connected or not. To qualify as strongly connected, a graph should have the following properties:
1) DFS algorithm will declare that all nodes are reachable ...
0
votes
1answer
12 views
Does networkx support dfs traversal by label
The networkx dfs_edges() function will iterate over child nodes. As far as I can tell, the http://networkx.lanl.gov/ documentation does not specify a parameter into dfs_edges() to only traverse if ...
1
vote
0answers
21 views
sudoku parallelization with MPI
I want to parallelize my sudoku solver program with MPI. The current serial code relies on backtracking with depth-first search. I did some research, but I am still not sure how to do it.
Some say ...
0
votes
1answer
43 views
Depth first search tree edge classification
I've got a basic question about DFS edge classification: I have a directed graph with edges: 1->2, 2->3 and 1->3. The edge classification for 1->2 is tree edge, 2->3 is tree edge. I'm confused as ...
1
vote
2answers
120 views
Finding the path with shortest waiting time
I'm working on this problem, from a competition. I'll describe the problem in brief here.
A chef is trying to reach to a meeting before time T, but he wants to do that with minimum waiting time at ...
-2
votes
2answers
92 views
BFS and DFS on Adjacency List [closed]
So I know the basics of Breadth First Search and Depth First Search on graphs but I can't seem to figure out how to perform both of them on a adjacency list. Each search starts at 0.
0 -> 5 -> 2 -> 1 ...
1
vote
1answer
85 views
depth-first-search/breadth-first-search easy implementation
List<Tree<T>> unvisited = node.getChildren();
DFS:
while (!unvisited.isEmpty()) {
Tree<T> node = unvisited.remove(0);
//search node
unvisited.addAll(0, ...
0
votes
1answer
51 views
Hard Coding Depth First Search Results (or Optimizing?)
I need to get all possible paths of a tree so I implemented a DFS like this:
void bisearch(std::vector<int> path, int steps,
int node, ...
0
votes
1answer
106 views
Recursive Depth First Search Algorithm - what is the general case/base case/initial situation?
Per my reasoning, the base case is when all nodes on the graph have been visited.
The general case is when all adjacent edges are labeled.
The initial situation is when a single node is picked as ...
-1
votes
1answer
74 views
Performing DFS and BFS on a directed graph
Suppose we have a graph such as:
If you wanted a path from 0 to 5, in what order will we visit the nodes if we perform DFS and BFS on this graph (assume the lowest element is always pushed first). ...
0
votes
1answer
77 views
Debug recursive method for finding if a word exists in a boggle board
I'm trying to implement a boggle solver.
My basic idea was to create a method that would check a word to see if it was on the board. then trim my dictionary by getting rid of words that start with ...
-2
votes
0answers
38 views
finding connected path in graph
I need to implement a method that will let me know if certain items in a 2d array are connected
example :
1 0 0 1
0 1 1 0
1 0 1 1
All Ones here are connected.
1 0 0 1
0 0 0 1
1 0 1 0
I ...
0
votes
1answer
57 views
Stack overflow from infinite loop - detecting cycles in modified DFS
I am going a bit crazy at this point trying to determine the source of an infinite loop (getting a stackoverflow error). I am trying to implement a modified DFS to detect cycles in a graph. I am ...
0
votes
2answers
97 views
Iterative deepening depth-first search in binary tree
i am having a normal binary tree that i am trying to apply iterative deepening depth first search on using c :
struct node {
int data;
struct node * right;
struct node * left;
};
typedef ...
-2
votes
1answer
51 views
Eliminating vertices from a graph [closed]
From Skiena's Book,
Design a linear-time algorithm to eliminate each vertex v of degree 2 from a graph by replacing edges (u,v) and (v,w) by an edge (u,w). We also seek to eliminate multiple copies ...
0
votes
1answer
53 views
Concern about Depth First Search [closed]
Prove that if G is an undirected connected graph, then each of its edges is either in the depth-first search tree or is a back edge.
Now, from intuition and in class lectures by Steven Skiena, I know ...
0
votes
4answers
168 views
Logic behind a stack-based maze algorithm
I'm fairly new to C++ programming, and I'm working on a maze solving algorithm. I need to use an explicit stack to keep track of the moves of done, no recursion.
Basically I'm responsible for the ...
0
votes
0answers
165 views
How to implement a depth first search that returns the shortest path length in Java
I am currently writing a program that takes a graph of nodes and returns the characteristic path length (path length from one node to each of the other nodes averaged then repeated for each node and ...
0
votes
1answer
79 views
Depth First Iterative deepening algorithm returning no results (in java)
I have a search algorithm that is supposed to parse the entire tree, find all results that could match a search query, and return them all as a list. I realize this isn't quite the point of the ...
0
votes
1answer
57 views
Implementing a depth first seach: incompatible objects
I am trying implement a breath-first search, for an AI program that searches through cities of romania.
however, I have had a lot of touble with this and the latest error is
searches.java:153: ...
5
votes
2answers
150 views
Closest pair of points algorithm variation
I know this may be a duplicate, but it seems like a variation on the 'Closest pair of Points' algorithm.
Given a Set of N points (x, y) in the unit square and a distance d, find all pair of points ...
0
votes
1answer
115 views
All subgraphs of a graph - uninformed search (artificial intelligence related)
I need to write a program which must be able to find all subgraphs of a graph using an algorithm like depth first. The thing is I cannot understand how could I represent a set of nodes with relations ...
0
votes
0answers
84 views
DFS and c-Expander graph - simple path with the length of n-2c+1
Just to make it clear - c-Expander graph is a directed graph G(V,E) with 2 Disjoint sets (A and B), of size equal or more than c with at least one Vertex between node of A and node of B.
I have to ...
0
votes
2answers
777 views
Adjacency Matrix -> Directed graph -> DFS
This is the code my friends and I have come up with so far after fiddling around. What we are trying to do is read in the adjacency matrix (input.txt), then create a directed graph out of it so we can ...
0
votes
0answers
68 views
Graph backtrack complexity
I'm trying to analyse the complexity of backtracking a graph in order to find the longest path.
My algorithm consists of topological sort and then backtrack from each vertex in order to find the ...
0
votes
1answer
55 views
Convert an expression tree back to string form using only depth first and/or breadth first traversal
I'm working on a genetic programming problem that involves an expression tree. The tree data structure I'm using provides only accessors in terms of depth first and breadth first traversal. What's an ...
1
vote
1answer
34 views
what difference between binary search and depth first search
Binary research executing usually cause memory leaking problem, although it is faster than linear search.
These two search methods, depth first search and binary search, which is more adapted to ...
0
votes
1answer
54 views
AI for a multiplayer game? [closed]
I'm looking at building an AI for a game that may have two to four players. Doing a bit of research in the area, it looks like none of the standard minimax approaches work, unless you build a ...
1
vote
0answers
119 views
Javascript: Recursive Depth First Search for hierarchical reordering based on d3's recurse()
I'm trying to do a depth first search through a complex json object such as:
...
0
votes
0answers
385 views
Found code online for depth first search but don't know what some lines do
I have an assignment that requires the use of depth first search and I found this code online. I'm basically just trying to fully understand what's going on here before attempting the monstrosity that ...
0
votes
4answers
67 views
What is the best data structure for keeping track of Cells I have entered in a maze
Here is how I am implementing this right now, using HashMap
private int steps=0;
private LinkedList<MazeCell> breadCrumbs = new LinkedList<MazeCell>();
private HashMap<MazeCell, ...
0
votes
2answers
59 views
Why am I getting a NullPointerException when I push this pointer onto a Deque/ArrayList when it clearly isn't Null
So I am trying to do a simple maze solver (depth first). I don't want help solving the recursion method, but for some reason this causes a NullPointerException to thorw on the ArrayList's .add of the ...
0
votes
0answers
182 views
Using Depth First Search to traverse a Matrix to find out Percolation
I'm trying to write a boolean method that will return if a matrix is "full" or not
(A full site is an open site that can be connected to an open site in the top row via a chain of neighboring (left, ...
0
votes
1answer
519 views
java depth first search
This is my implementation for the reachable() of a graph using depth first search. It looks for a possible path from vertex 1 (v1) to another vertex (v2)
I got some results correctly and some are ...
2
votes
1answer
557 views
Traverse a graph represented in an adjacency matrix
I am wanting to use the depth-first and breadth-first methods for traversing a graph. I have done this on a simple list of nodes before, but I have never tried it with an adjacency matrix and I ...
0
votes
2answers
67 views
Search method of Stack class always returning -1
I have this class to hold two values:
public class Coord {
public int x;
public int y;
public Coord(int x, int y) {
this.x = x;
this.y = y;
}
}
I am trying to ...
0
votes
1answer
366 views
SWI-Prolog depth-first search?
My aim is to develop a simple program to run a game called 'Kayles' which is similar to Skittles. You have a row of bottles, 2 players knock them down in turns, and the player to knock the last ...
1
vote
1answer
97 views
Another depth first search in java issue
I am tying to implement a depth first search algorithm in java to find the best way to move in a quadratic matrix. I am avoiding to create "unnecessary" objects, i.e object just to hold (X,Y) ...
1
vote
1answer
139 views
8 tile solver with repeated nodes - Python
i'm trying to solve the 8tile puzzle using techniques like BFS search, DFS, Greedy and A* using Manhattan distance as my heuristic solution.
The problem is that while i can solve some good number of ...
4
votes
1answer
436 views
How to find longest path in graph?
We are given an Adjacency list of the form
U -> (U,V,C) -> (U,V,C) ...
U2 -> ...
U3 -> ...
.
.
etc
(U,V,C) means there's an edge from U to V with cost C.
The given Adjacency ...
2
votes
1answer
74 views
What type of traversal should be used to find the sum of a binary tree?
The following question appeared on a test my instructor gave a couple of years ago. He provided an answer, but did not provide a satisfactory explanation. I have googled this topic, but I didn't ...
1
vote
1answer
89 views
How to frame dynamic sql statements using Tree in C#?
I'm trying to implement a C# module which will dynamically frame sql statements,The strategy which im thinking involves the Tree Data Structure,The values should be stored in a tree like structure
...
0
votes
1answer
685 views
Undirected Graph - > Depth-First Search C programming - counts number of connected components
This is now fixed. It successfully creates an UNDIRECTED graph's Adjacency list. Also, it performs a Depth-first Search and counts the total number of connected components in the graph, while also ...
0
votes
2answers
89 views
Strange behavior in Python code
I am trying to write a simple method to link the nodes of a tree together in this way:
Every leaf is linked to the previous and the next leaf in the tree
Every non-leaf is linked to the previous and ...
2
votes
2answers
331 views
Shortest path: DFS, BFS or both?
I know BFS alone can find the shortest path in an unweighted graph but I also read on a couple of sites where people were claiming that either BFS or DFS could do this. I just wanted to confirm that ...
1
vote
1answer
264 views
What's the purpose of BFS/DFS?
okay, I've learned their algorithms, but what are they used for?
To find a certain node in a graph or to find a shortest path or to find a cycle in a graph?
Both of them just visit all the nodes and ...
0
votes
1answer
112 views
Why BFS signs nodes with 2 colors, and DFS with 3 colors?
It has suddenly occured into my mind.
Why do we use only 2 colors in BFS graphs traveral
and 3 are needed for DFS ?
for instance: from wikipedia:
BFS:
procedure BFS(G,v):
2 create a queue Q
...
0
votes
1answer
301 views
Non-Recursive DFS Implementation
Recently I needed to implement non-recursive DFS as part of a more complicated algorithm, Tarjan's algorithm to be precise. The recursive implementation is very elegant, but not suitable for large ...
0
votes
2answers
223 views
TypeError: argument of type 'instance' is not iterable
So heres my code and it breaks at the line:
if (suc not in sFrontier) or (suc not in sExplored):
giving the error: TypeError: argument of type 'instance' is not iterable
"""
The pseudocode ...
0
votes
1answer
163 views
Detect cycles in undirected graph using quick graph
is there anyway to detect all the cycles in an undirected graph generated with quick graph and print the list of cycles. I "googled" a little bit and I came to know that cycles in a graph can be ...

