Tagged Questions

6
votes
2answers
907 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
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 ...
4
votes
2answers
623 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 ...
3
votes
4answers
284 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 ...
2
votes
2answers
973 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 ...
1
vote
1answer
92 views

Edge classification in a DFS

According to the book (Intro to Algorithm), in dfs, edges are classified as 4 kinds: Tree Edge, if in edge (u,v), v is first discovered, then (u, v) is a tree edge. Back Edge, if ......, v is ...
1
vote
3answers
559 views

Does this python code employs Depth First Search (DFS) for finding all paths?

This code is given in python official essays on graph theory. Here's the code: def find_all_paths(graph, start, end, path=[]): path = path + [start] if start == end: ...
1
vote
2answers
862 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
264 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
118 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 ...