Directed acyclic graphs appear in many data structures such a changeset graphs in distributed version control systems.
2
votes
1answer
35 views
What is the maximum number of possible topological sorts of N-order Direct Acyclic Graph?
I need to find the maximum number of topological sorts on Direct Acyclic Graph of N-order. I've checked by running Depth first search algorithm on various Direct Acyclic graphs, and it looks like it ...
1
vote
0answers
58 views
Diff for Directed Acyclic Graphs
I'm looking for an algorithm which can diff two Directed Acyclic Graphs(DAGs). That is, I'd like an algorithm which produces a sequence of deletions and insertions on the first DAG to produce the ...
8
votes
1answer
186 views
How to define a tree-like DAG in Haskell
How do you define a directed acyclic graph (DAG) (of strings) (with one root) best in Haskell?
I especially need to apply the following two functions on this data structure as fast as possible:
...
6
votes
1answer
78 views
Is there a name for a tree like graph, where nodes can have multiple parents, but still from only 1 level above
Is there a name for a tree like graph, where nodes can have multiple parents, but still from only 1 level above.
Therefore the graph is directed and acyclic, but it has other constraints as well.
-1
votes
1answer
58 views
Tree, a DAG, directed acyclic graph and my approach [closed]
first of all - great site!
Here is my problem, I am studying for an interview, and I ran into this problem,
http://i.stack.imgur.com/JmdER.png
I am asked, Suppose an arithmetic expression is given ...
0
votes
0answers
38 views
How do I generate a DAG of instruction dependencies for x86/x64 assembly?
I'm writing a scheduling optimizer for x86/x64 assembly code. It would take as input either a assembly.s source or compiled.o object file, and determine the optimum instruction ordering for a given ...
3
votes
1answer
89 views
Is there a good free implementation of Sugiyama Layout for Java?
I am using JUNG library for network-graphs. I also found an implementation of the sugiyama layout: http://sourceforge.net/tracker/?func=detail&aid=2944336&group_id=73840&atid=539121
But ...
0
votes
1answer
72 views
Longest path in a Direct Acyclic Graph
How can I find the longest path in a DAG with no weights?
I know that the longest path from A to B can be found in linear time if the DAG is topologically sorted, but I need to find the longest path ...
0
votes
0answers
48 views
How to find P node-disjoint directed paths that contains at least N nodes in a DAG
You are given a DAG and values for P and N. Give an algorithm
which returns true if there exist P node-disjoint directed paths that contain at least
N nodes in total else returns false.
2
votes
2answers
143 views
Linear time algorithm to determine whether a DAG has a vertex reachable from every other vertex?
I have the following homework question:
DAG: Design a linear-time algorithm (O(|E|+|V|)) to determine whether a DAG has a vertex that is reachable from every other vertex, and if so, find one.
Now ...
1
vote
0answers
37 views
Economy Producer/Consumer Simulation
Hello wonderful community!
I'm currently writing a small game in my spare time. It takes place in a large galaxy, where the player has control of some number of Stars. On these stars you can ...
0
votes
0answers
63 views
Find a Subset of Vertices S such that for Each Vertex v in S there are k+1 Vertices reachable from v
Let G=(V,E) be a directed graph and k be a natural number. Describe an algorithm for finding a subset of vertices S such that for each v in S there are exactly k+1 vertices (not necessarily from S) ...
2
votes
1answer
95 views
Different ways to implement DAGs in java
I am implementing DAG and wondering whether the following is the only way to represent it in Java:
class Node{
List<Node> parents;
List<Node> successors;
int value; }
class DAG{
Node ...
0
votes
1answer
235 views
k-Edge Shortest Path in Positive Weighted Directed Acyclic Graph
I am given a graph, G = (V, E), that is positive weighted, directed, and acyclic. I am to design an algorithm that runs in O(k(m + n)) for reporting a k-edge shortest path from s to t. A k-edge ...
0
votes
0answers
82 views
python networkx : generate graph from shortest path
I have a Digraph. From a list of target nodes, i extract a subgraph. Now i would like to get the shortest path between all the target nodes.
For example, let's imagine i have target nodes 3,4,5 and ...
0
votes
1answer
69 views
Networkx, DIAC graph, subgraph from a node with deph limit
I have a Digraph constructed with networkx that has 37379 nodes and 61263 edges. I would like to extract for a node target, a subgraph that contain only the target node and the first nodes that are ...
0
votes
0answers
31 views
dependency graph, p person to perform the tasks, and n tasks. whats the lower bound(minimum time to finish all task) for any n, p, G?
if I have a DAG dependency graph G=(V,E), p persons to perform the tasks,each person can do one thing at once,each task takes the same amount of time, and n tasks. whats the lower bound(minimum time ...
3
votes
2answers
140 views
Sparse Graph Implementation & Performance in C++
I'm currently working on a directed graph data structure in C++ (no Boost GL for this project). The primary application will be identifying connected components and sinks. The graphs are expected to ...
0
votes
0answers
12 views
scheduling of a DAG on a cluster
how to schedule a Directed acyclic graph with many tasks in it on a multiple node cluster using a scheduling algorithm.
1
vote
1answer
395 views
Serialised acyclic tree in Java? [closed]
As a programming task, I need to develop a command line application that takes a CSV file that represents a serialised acyclic tree and an integer representing its depth as input arguments and return ...
0
votes
0answers
88 views
Optimizing an all paths algorithm for a DAG
Ok current algorithm, uses stacks to create node lists that represent paths. All pathways have no repeat nodes, are not above 20 nodes, and are not already in a master list:
public ...
3
votes
1answer
173 views
Minimize set of edges in a directed graph keeping connected components
Here is the full question:
Assume we have a directed graph G = (V,E), we want to find a graph G' = (V,E') that has the following properties:
G' has same connected components as G
G' has same ...
0
votes
3answers
142 views
Building an All Paths Algorithm for a DAG
Been trying to build a method that gets all conceivable unique paths through a DAG. Went with recursion because it seemed like the easiest to understand. Ended up with this:
public class Brutus {
...
0
votes
0answers
105 views
Traversing paths between two nodes in a directed acyclic graph in Javascript
I'm having trouble finding all the paths between two nodes in my DAG. I'm sure this has been covered before, but I'm having trouble with the code and less of the algorithm.
I have a DAG with a data ...
0
votes
0answers
151 views
Directed Acyclic Graph Traversal with Multiple Similar Paths
Currently using an acyclic directed graph to model a chemical pathway map. Where each node is an individual chemical and each edge is a reaction between those chemicals.
Multiple chemical reactions ...
0
votes
1answer
75 views
Is it ok to have cyclic foreign key dependencies in a relational database?
I'm writing a code to backup a MySQL database into a binary file. I'm aware of mysqldump but for some reasons I can't use trivial methods. What I'm currently doing:
read schema definition
sort ...
1
vote
1answer
64 views
is igraph preferential attachment directed graph acyclic?
I am generating graphs using the Barabasi-Albert model implemented by igraph:
Graph.Barabasi(10,5,directed=True)
How can I be sure that the generated directed graphs are acyclic? Is there a basic ...
0
votes
2answers
298 views
longest path in directed acyclic unweighted graph in linear time
how can I find in linear time the longest path in a graph like this one:
3 -> 2
4 -> 3
2 -> 5
I know that the longest path here is 4 -> 3 -> 2 So it has 3 veticles but i dont know how to find it ...
9
votes
2answers
1k views
weak_ptr VS shared_ptr in graph node parent list
I have a directed acyclic graph implemented by Graph and Node classes. Each node has a list of pointers to childern and a list of pointers to parents. I added parents recently because some algorithms ...
18
votes
9answers
672 views
Hash value for directed acyclic graph
How do I transform a directed acyclic graph into a hash value such that any two isomorphic graphs hash to the same value? It is acceptable, but undesirable for two isomorphic graphs to hash to ...
0
votes
2answers
110 views
C/C++ graph interface for representation of partial order
In my code I use a class which represents a directed acyclic graph. I wrote the code myself, it wasn't hard. But later I realized my app has more requirements: the graph must be transitive-reduced, ...
2
votes
0answers
198 views
DAG(directed acyclic graph) dynamic job scheduler
I need to manage a large workflow of ETL tasks, which execution depends on time, data availability or an external event. Some jobs may fail withing execution of workflow and system should have an ...
0
votes
1answer
48 views
Need a same relative level nodes (siblings) DAG algorithm in Python
So I am currently working on a quick and dirty Python project that supports a data structure made out of a dictionary with keys being GOIDs from the open biological ontology format. It hashses to ...
6
votes
4answers
392 views
HTML/CSS Visualizing a RBAC Graph
I have a RBAC structure stored in my database (a project built with Yii).
I would love to generate a graph to visualize the relationships between the items to see if I'm not making logical mistakes, ...
0
votes
1answer
114 views
Algorithms for maximum weighted spanning weakly connected DAG
Is there an algorithm to find maximum weight spanning DAG that is weakly connected in a directed graph where every cut has sets that are weakly connected (There is at least one directed path from one ...
0
votes
0answers
125 views
Online algorithm for finding whether adding a given edge to a dag will lead to a cycle?
I was trying to solve this problem. The core of the problem is basically developing an online algorithm for detecting whether adding an edge in a directed graph will lead to a cycle. If adding the ...
19
votes
6answers
259 views
ReadOnlyCollection vs Liskov - How to correctly model immutable representations of a mutable collection
Liskov-substitution principle requires that subtypes must satisfy the contracts of super-types. In my understanding, this would entail that ReadOnlyCollection<T> violates Liskov. ...
1
vote
1answer
265 views
c++ boost::graph get parent vertices from directed graph
I have a directed graph (implemented via an adjacency_graph from the boost::graph library) and I'm trying to find the parent vertices of a certain vertex.
In the past (via pygraph) I have simply ...
1
vote
1answer
47 views
DAG: Minimizing distance between entries in grouped nodes
I have a directed acyclic graph with nodes that are lists of entries that connect to entries in other nodes. Kind of like this:
entry ]
entry--| ] node 1
entry | ]
----- |
entry<-| ] node ...
0
votes
1answer
263 views
Longest path for weighted directed acyclic graph
I'm trying to conceptualize this problem and then write Java code for it. I know there's been some discussion here, but I'm not seeing lots of answerers, so I'd like to reiterate the question by ...
0
votes
0answers
113 views
K single pair shortest paths in Directed Acyclic Graph
Given a DAG with N nodes and M edges and a source and destination node, is there a way to compute the K shortest paths faster than O(N^2 * K * log(K))?
In O(N^2 * K * log(K)) it would be fairly ...
2
votes
0answers
70 views
Condor DAG file - parents with many children. Is it legal to have the parents of a child denoted on multiple lines instead of one?
Here's a simple tree of what I have:
A B
\ /
C
A and B are the parent processes and C can only run after A and B have finished.
Normally, the DAG file would look like so:
...
2
votes
1answer
92 views
How do I find the '5' most weighty paths in a directed acyclic graph?
I have a directed acyclic graph (DAG) with a weight associated with each node. I want to find the top 'n' (e.g. 5) most weighty paths, where a path's weight is defined as the sum of all the weights of ...
1
vote
0answers
207 views
Fastest min-cut (max-flow) algorithm in actual practice on small weighted DAG
I want to solve the min-cut problem on a lot of small DAGS (8-12 nodes,20-60 edges) very quickly. It looks like the best solution is to solve the max-flow and deduce a cut from that. There are quite a ...
0
votes
2answers
130 views
How do I visualise an arbitrary directed acyclic graph?
I'm looking for an algorithm to automatically visualise a large DAG. It needs to scale well to hundreds or even thousands of nodes and connections (without turning unreadable). Connections should ...
0
votes
1answer
87 views
Relation between DAG and finding path between 2 nodes in a grid
The Hitchhiker's guide to Algorithms discusses the following pointers:
1.6 Counting or Optimizing Good Paths
In an n × m grid, we want to go from the left bottom corner to the upper right corner. ...
1
vote
1answer
110 views
How is Longest Increasing Sub-sequence a special case of longest path in DAG?
I read this statement in "Hitchhiker's guide to algorithms". But, I'm not able to visualize it as in a LIS problem all we have is a sequence of numbers. How can I modulate it as a graph problem?
3
votes
4answers
816 views
Level Order tree Traversal for a generic tree, displaying the tree level by level
I would like to display the tree structure level by level. My current code does a BFS or Level Order Traversal but I cannot get the output to display the tree structure like a tree
See current output ...
1
vote
0answers
221 views
Walk on a DAG, Traverse All Paths From Sources to Sinks
I am trying to traverse an entire DAG, with the hope of coming up with pairs from a source to a sink.
Ideally, I'd like each source to be unique, and each sink to be unique, thus creating unique ...
0
votes
1answer
410 views
Find the most advantageous sequence of currency exchange
I am working with the following exercise from my book:
Shortest path algorithms can be applied in currency trading. Let c1 , c2 , . . . , cn be various cur-
rencies; for instance, c1 might be ...




