Tagged Questions

9
votes
6answers
4k 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 …
1
vote
3answers
81 views

Enumerating All Minimal Directed Cycles Of A Directed Graph

Hello! 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 …
0
votes
2answers
55 views

Checking if removing an edge in a graph will result in the graph splitting

I have a graph structure where I am removing edges one by one until some conditions are met. My brain has totally stopped and i can't find an efficient way to detect if removing an …
3
votes
2answers
194 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 resto …
3
votes
3answers
172 views

unique path in a directed graph

Hi, 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'v …
0
votes
1answer
237 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?
0
votes
2answers
84 views

Sorting a graph to make as many arrows point forward as possible

I need to sort the nodes of a directed graph such that the number of arrows that flow backwards (against the sorting order) is minimal. I can think of algorithms (e.g. keep swappi …
4
votes
4answers
542 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 co …
2
votes
4answers
402 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 gra …
1
vote
3answers
117 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 …
3
votes
1answer
59 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 …
1
vote
3answers
255 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 …
1
vote
1answer
160 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, desp …
1
vote
2answers
66 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 qu …
4
votes
2answers
116 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 INT …

1 2 next
15 30 50 per page