Tagged Questions
The directed-graph tag has no wiki summary.
52
votes
7answers
33k views
Best algorithm for detecting cycles in a directed graph
What is the most effiecent alogrithm for detecting all cycles within a directed graph?
or
I have a directed graph representing a schedule of jobs that need to be exectuted, a job being a node and a ...
23
votes
13answers
3k views
What options are available for the layout of directed or undirected graphs in .NET?
By graph here I mean something resembling these images:
The ideal solution would:
use only managed code
allow output to a bitmap image
allow output to WPF elements
include some kind of ...
14
votes
4answers
8k views
How do I check if a directed graph is acyclic?
How do I check if a directed graph is acyclic? And how is the algorithm called? I would appreciate a reference. Niko
10
votes
5answers
2k views
Implementing a node-based graphical interface?
I would like to implement a nodal-interface, basically a DAG where each node performs an operation on it's input connections, and outputs something (which you can connect to another node)
Some ...
10
votes
4answers
3k views
graph serialization
I'm looking for a simple algorithm to 'serialize' a directed graph. In particular I've got a set of files with interdependencies on their execution order, and I want to find the correct order at ...
8
votes
1answer
376 views
Tarjan's strongly connected components algorithm in python not working
I implemented the Tarjan's strongly connected components algorithm, according to wikipedia, in Python, but it isn't working. The algorithm is quite short and I cannot find any difference, so I cannot ...
8
votes
3answers
847 views
Storing a directed graph in google appengine datastore
I need to store a large and dynamic undirected graph in google appengine, what's the best way to do this?
The graph representation must be able to support rapidly pulling out a set of vertices (for ...
7
votes
2answers
377 views
How can one create cyclic (and immutable) data structures in Clojure without extra indirection?
I need to represent directed graphs in Clojure. I'd like to represent each node in the graph as an object (probably a record) that includes a field called :edges that is a collection of the nodes that ...
7
votes
6answers
2k views
Best Way to Store/Access a Directed Graph
I have around 3500 flood control facilities that I would like to represent as a network to determine flow paths (essentially a directed graph). I'm currently using SqlServer and a CTE to recursively ...
6
votes
2answers
338 views
Fast algorithm for counting the number of acyclic paths on a directed graph
In short, I need a fast algorithm to count how many acyclic paths are there in a simple directed graph.
By simple graph I mean one without self loops or multiple edges.
A path can start from any node ...
6
votes
2answers
826 views
Saving graphs in Haskell
I can easily define a datatype for a node of a directed graph.
data Node = Node String [Node] derving (Show, Read)
I can save the graph to a file using show function, then restore it using read. ...
5
votes
1answer
670 views
Tarjan cycle detection help C#
Here is a working C# implementation of tarjan's cycle detection.
The algorithm is found here:
http://en.wikipedia.org/wiki/Tarjan%27s_strongly_connected_components_algorithm
public class ...
5
votes
2answers
227 views
How to remove cycles in an unweighted directed graph, such that the number of edges is maximised?
Let G be an unweighted directed graph containing cycles. I'm looking for an algorithm which finds/creates all acyclic graphs G', composed of all vertices in G and a subset of edges of G, just small ...
5
votes
4answers
2k views
How to do directed graph drawing in PHP?
I'm looking for a way to draw directed graphs in PHP. (as in http://upload.wikimedia.org/wikipedia/commons/0/08/Directed_acyclic_graph.png). I want it to create an image of the graph just like GD can ...
5
votes
2answers
1k views
How do I find all paths through a set of given nodes in a DAG?
I have a list of items (blue nodes below) which are categorized by the users of my application. The categories themselves can be grouped and categorized themselves.
The resulting structure can be ...
4
votes
2answers
228 views
Counting distinct undirected edges in a directed graph in SQL
Given a table holding edges in a directed graph like this:
CREATE TABLE edges (
from_here int not null,
to_there int not null
)
What's the nicest way to get the number of distinct ...
4
votes
2answers
301 views
Data structure for directed graphs, allowing fast node deletion?
I need to store a directed graph (not necessarily acyclic), so that node deletion is as fast as possible. I wouldn't mind storing additional data in order to know exactly which edges have to go when a ...
4
votes
1answer
473 views
Traversal of cyclic directed graph
I have a cyclic directed graph. Starting at the leaves, I wish to propagate data attached to each node downstream to all nodes that are reachable from that node. In particular, I need to keep pushing ...
4
votes
2answers
514 views
c# - what is best persistence approach/tool/library for a Directed Graph
What is best persistence approach/tool/library for a Directed Graph in C#. That is assuming I have a class model for a directed graph (e.g. Nodes & Relationships, or Vertex's and Edge's if you ...
4
votes
4answers
2k views
What is the most efficient way to determine if a directed graph is singly connected?
I am working on an assignment where one of the problems asks to derive an algorithm to check if a directed graph G=(V,E) is singly connected (there is at most one simple path from u to v for all ...
4
votes
3answers
1k views
Does the dot Directed Graph allow for subgraphs with a different rankdir?
Using the dot directed graph language, is it possible to create subgraphs with a different rankdir?
I tried the following, which didn't work. Both graphs were left to right, despite the presence of ...
4
votes
2answers
241 views
What is the name of this type of directed acyclic graph?
Perhaps it isnt even a DAG, but as its naming im after i wasnt sure what title to give this...
What is the name of a data structure where every node can only have 0 or 1 paths INTO it?
Strictly, is ...
3
votes
3answers
479 views
Data structure and algorithms for a directed cyclic graph (F#)
I'm trying to analyse an application where the assembly references should be a directed-acyclic-graph, but aren't. There is also a related problem of sub-assemblies referencing different versions of ...
3
votes
2answers
2k views
Force-directed layout implementation in Java
I've been looking around for a Java implementation of the force-directed graph layout algorithm but got no fruits so far. Any help will be appreciated :)
3
votes
1answer
205 views
Modeling a directed graph with a special center node
I'm looking for opinions on how to model a directed graph that contains one special node.
Special node:
Cannot have any edges leading to it.
Cannot be removed.
Current design:
Tables: Nodes, ...
3
votes
3answers
1k views
Removing cycle dependencies on a directed graph with fixed edges
I have a directed cyclic graph. Some edges are FIXED and may not be removed. The other edges may be removed to break a cycle.
What is the best way to do remove the cycles in this graph?
The traversal ...
3
votes
2answers
262 views
Good intro to directed graphs etc
I'm very interested in mindmaps, treeviews, and the like, but have no training in graph theory / directed graphs etc. What books (and/or websites) would be the best place to start? (Targeting ...
3
votes
3answers
927 views
Recursive lambda expression to find the path(s) through a directed graph?
I need to find a path or paths down a complicated graph structure. The graph is built using something similar to this:
class Node
{
public string Value { get; set;}
public List<Node> ...
3
votes
3answers
408 views
unique path in a directed graph
I'm designing an algorithm for class that will determine if a graph is unique with respect to a vertex v such that for any u <> v there is at most one path from v to u. I've started by using BFS to ...
2
votes
1answer
104 views
Library to create Directed graph with edge capacity in C#
Is there a library or class available to create directed graphs, who's edges support capacity too? (Or I have to create it my self?).
I want to test max flow algorithm I recently learned
2
votes
1answer
134 views
Recursively traversing DBIx::Class relationships
Which is the quickest way to get the list of tables that have foreign key dependencies, both direct and indirect, to DBIx::Class subclass foo? I have a MySQL database based on a DBIx::Class::Schema. ...
2
votes
0answers
219 views
PHP Library to Generate xdot Files From dot Files
Apologies in advance is I'm misusing terminology, and corrections are appreciated. I'm fascinated by directed graphs, but I never has the math/cs background to know what they're really about, I just ...
2
votes
3answers
864 views
Enumerating All Minimal Directed Cycles Of A Directed Graph
I have a directed graph and my problem is to enumerate all the minimal (cycles that cannot be constructed as the union of other cycles) directed cycles of this graph. This is different from what the ...
2
votes
3answers
1k views
Graph navigation with C#
I having a bit of a quandry trying to come up with a good algorithm to navigate the following graph.
If a user chooses "Table 21" as a starting point, I need to be able to get the path to any other ...
1
vote
2answers
127 views
Is there a library that provides a (directed) hypergraph implementation in C++?
I'm currently working on a project that enumerates the k-best solutions of a dynamic program using a directed hypergraph framework. My current implementation (in Python) works well, but is fairly ...
1
vote
1answer
94 views
Topological sorting and cycles
I've got some input files from my teacher wich we are supposed to test the program with. The task is to read from file, create a directed graph and print out the output. But if there is a cycle we are ...
1
vote
2answers
85 views
Parent Child Perl Data Structure
I have a datafile that has a list of paired values representing river flow relationships.
The file has this structure
Node Downstream Node
A B
B C
C D
E C
...
1
vote
2answers
56 views
Is a Map that contains values that have references to other keys in the Map the simplest form of a directed graph?
Map<K,V<List<K>> graph = new HashMap<K,V<List<K>>();
Are there any major obstacles to using this to represent a directed graph that can be cyclical?
EDIT:
This was ...
1
vote
3answers
169 views
Finding Successors of Successors in a Directed Graph in NetworkX
I'm working on some code for a directed graph in NetworkX, and have hit a block that's likely the result of my questionable programming experience. What I'm trying to do is the following:
I have a ...
1
vote
1answer
104 views
Algorithm to compare similarity of directed paths through directed graph
I have a directed graph with two directed paths in it.
I want an algorithm to determine the similarity between the two paths.
This post mentions using the Levenshtein distance to determine an ...
1
vote
1answer
51 views
Easy question - Is this a Cycle?
I have a directed graph. Is the following a cycle? Do the arrows have a specific direction in a cycle?
1
vote
1answer
183 views
efficient algorithm for loop identification in a directed graph? [closed]
Possible Duplicate:
Best algorithm for detecting cycles in a directed graph
I'm searching for an algorithm to find loops in a directed graph.
My graph has labels only in the nodes, not in ...
1
vote
2answers
94 views
how to find the number of roads from node A to node B in a directed graph?
I'm given a graph which can have more than one arch between 2 nodes.
Example :
4 nodes
1->2
2->3
3->4
3->4
1->4
Which is the optim way to find the number of the roads from node A to node B ?
The ...
1
vote
3answers
179 views
Efficient search in a directed graph
I have a directed graph with millions of vertices and edges. A set of vertices are given, let's assume that they are called "START_POINTS". Another set of vertices, called "END_POINTS" are also given. ...
1
vote
1answer
185 views
How can I cache dynamic data from a REST API using PHP?
UPDATE: I've decided to take the advice below and implement a Memcached tier in my app. Now I have another thought. Would it be possible/a good idea to do an AJAX request on a poll (say every five or ...
1
vote
1answer
157 views
Tools for XML based Directed Graphs?
Visual Studio 2010 has this feature called Directed Graph Documents (files with a dgml extension). It can be used to show relationships between objects similar to UML. I was able to play with it ...
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 ...
1
vote
3answers
669 views
need a graph algorithm similar to DFS
I'm curious if there is a specific graph algorithm that traverses an unweighted acyclic directed graph by choosing a start node and then proceeding via DFS. If a node is encountered that has ...
1
vote
2answers
128 views
Creating a trouble shooting web page with a series of ?s in asp.net. Directed Graph
I've been working on my first web page which will be used as a trouble shooting guide based on a series of questions. The questions are determined by the answer of the previous question, so it turns ...
1
vote
1answer
702 views
Tournament graph question(s)
Is a tournament graph the same thing as a directed complete graph? And, do all vertices in a tournament graph have the same number of edges?