Tagged Questions
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 ...
4
votes
3answers
183 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
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
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
7answers
628 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 ...
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
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
3answers
417 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];
...
1
vote
1answer
208 views
Find parent node of a tree to create the shortest possible tree height
I have an undirected graph represented as an adjacency matrix of Euclidean weights. I'm using this to represent the minimum spanning tree for a larger complete graph.
What I want to find is the ...
1
vote
3answers
147 views
Why do I get StackOverFlowError when trying to DFS this graph?
I am trying to write an algorithm that determines whether a graph is connected or not. I think my code is almost correct, although I keep getting StackOverFlowError. I personally think because there's ...
1
vote
2answers
857 views
Algorithm for counting connected components of a graph in Python
I try to write a script that counts connected components of a graph and I can't get the right solution.
I have a simple graph with 6 nodes (vertexes), nodes 1 and 2 are connected, and nodes 3 and 4 ...
1
vote
1answer
263 views
Will DFS from every node give all cycles in a directed graph
I want to find all the cycles in a directed graph. Starting Depth-first search from one node will find some cycles(finding back-edges). So, i applied dfs to all the nodes in the graph(i.e. each time ...
0
votes
1answer
21 views
Travelling salesman query
I have read that one of the approximations for the TSP is to do the following:
- Compute the minimal spanning tree (MST)
- Perform a DFS of the MST
The goal of solving the TSP is that every vertex ...
0
votes
3answers
39 views
Global variable used by recursive function
Suppose you have to implement Graph class, containing some algorithms, using dfs (depth-first search). For instance, it might be connectivity check and Graph class would look like that:
class Graph {
...
0
votes
2answers
39 views
recursive traversal trough a graph, counting ways to a point
Got a graph which is looks like this one:
I want to count all possible ways to a specific point p(i,j) from p(0,0) in this graph. I think i can do it with Depth-first search. How i should extend the ...
0
votes
1answer
35 views
What is the number of all possible non-cyclic simple paths in a fully-connected digraph?
Let's say we have a fully connected digraph G with N vertices and M edges.
How many edges does the graph have? Is it M = N^2?
If we take one vertex and start visiting its neighbours in a ...
0
votes
1answer
27 views
Finding cycles with a stack-based depth first search
I know that you use a recursive implementation of DFS where all nodes start as white, are colored gray when they are first encountered, and are colored black after all of their children are explored, ...
0
votes
1answer
54 views
DFS for Graph, mark as visited
I'm implementing a DFS for a (linked list) Graph.
My graph structure example: http://i.imgur.com/Pm9jC.png
As you can see, there are many nodes named "a". They're the same in terms of vertex but ...
0
votes
1answer
117 views
Writing a DFS with iterative deepening without recursion
So currently i have a DFS with the following pseudocode
procedure DFS(Graph,source):
create a stack S
push source onto S
mark source
while S is not empty:
pop an ...
0
votes
2answers
105 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 ...
0
votes
3answers
112 views
BGL DFS Visitor with Priority Queue
I have a tree (in the graph sense) representation of a tree (in the physical sense). The tree is represented as a BGL adjacency list where each vertex contains radius and position properties, i.e., my ...
0
votes
2answers
125 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
272 views
Path determination in depth first search
I created an implementation of depth-first search to list all paths between two nodes that is non cyclic but nodes can be repeated as follows:
---------------depthfirstsearch.php--------------
...
0
votes
3answers
248 views
How to track the depth in this object graph depth-first search algorithm?
I have this code which iterates over a tree, doing a depth-first search. Every element is tackled exactly once. Very good.
-(void)iterateOverTree:(TreeNode *)node
{
NSMutableArray * elements = ...
0
votes
1answer
893 views
Implementation of Adjacency list of a graph
I am trying to implement the adjacency list for a non-weighted graph and a few questions/concerns. i realize I need a linked list to store the edges and an array to store the vertices.Currently I ...
0
votes
2answers
779 views
Depth First Search in Binary Trees/Graphs in Java
I have been trying for a while to get this Graph disguised as a Binary Tree working. Currently I'm using a function that passes in the root node and the ID of the node I am looking for. Only problem ...
0
votes
3answers
770 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
1answer
720 views
writing depth first search in c
I'm trying to write depth first search in C. In the search instead of maintaing a set of all the reachable nodes I instead have to mark the isVisited field in Vertex as a 1 for visited. Here's my data ...
0
votes
1answer
527 views
revisiting nodes during DFS and controlling infinite cycles
I am implementing DFS on a weighted directed graph in the following way:
public class DFSonWeightedDirectedGraph {
private static final String START = "A";
private static final String ...
0
votes
4answers
3k views
Complexity of finding all simple paths using depth first search?
Thanks to everyone replying with ideas and alternate solutions. More efficient ways of solving problems are always welcome, as well as reminders to question my assumptions. That said, I'd like you to ...
0
votes
2answers
442 views
depth-first-search
I implemented a depth-first-search in c# based on information I found on the net and old java books and I used the Node and NodeList and Graph from the msdn site.
How can one modify the DFS or BFS to ...