A 'digraph' means 'one symbol written as two characters'. In printing it meant two letters cast as one piece of lead, e.g. ae, fi, ...

learn more… | top users | synonyms

1
vote
0answers
17 views

Using dictionary of dictionaries in django templates not working well

Weighted Directed Graphs are represented as dictionaries of dictionaries in python. Something like this (example): digraph = {'a': {'b':2, 'c':3}, 'b': { 'a':1, 'd',2}} My problem involves passing ...
0
votes
0answers
24 views

Python networkx and persistence (perhaps in neo4j)

I have an application that creates many thousands of graphs in memory per second. I wish to find a way to persist these for subsequent querying. They aren't particularly large (perhaps max ~1k nodes). ...
146
votes
4answers
5k views

What is this smiley-with-beard expression: “<:]{%>”?

I came across the following program, which compiles without errors or even warnings: int main(){ <:]{%>; // smile! } Live example. What does the program do, and what is that ...
0
votes
0answers
54 views

Algorithm for identifying bridges - Euler Cycle

Im working on a problem to find an Euler Cycle in a digraph which I know contains an Euler Cycle. However for larger graphs I get stackoverflow in Java and I think my algorithm could be made smarter ...
0
votes
0answers
53 views

Javascript Infovis Doubly-Linked Nodes

I am using the Javscript InfoVis toolkit. Thanks, by the way, to whoever developed it. It is awesome. Anyways, I have two issues. I have a digraph being plotted from information parsed out of a .dot ...
2
votes
4answers
940 views

How to determine if a given directed graph is a tree

The input to the program is the set of edges in the graph. For e.g. consider the following simple directed graph: a -> b -> c The set of edges for this graph is { (b, c), (a, b) } So ...
1
vote
2answers
189 views

Java: How to covert pseudo code for a stack into an array

How do I convert the following pseudo code into an array instead of a stack. The algorithm is intended to construct a digraph given a certain input: Scan the formula from right to left calling ...
1
vote
1answer
153 views

Disabling digraphs in vim

I have an unusual problem with my gVim installation - approximately half the time that I turn on my computer, gVim automatically replaces character sequences such as 'a and "o with their corresponding ...
0
votes
2answers
69 views

how can I work with digraphs and trigrpahs in bloodshed/DevC++ compiler

In compiler trigraphs and digraphs are not replacing by the corresponding single characters. Rather it's giving a warning something like this, 12:26 G:\BIN\cLang\macro2.cpp [Warning] trigraph ??= ...
4
votes
3answers
173 views

Count disjoint digraphs

I have a boolean[][] 2D-array called matrix, which encodes a directed graph such that if matrix[i][j] == true, then vertex j is connected to vertex i (the inverse is not necessarily true). I'm trying ...
5
votes
2answers
345 views

What does the 'lower bound' in circulation problems mean?

Question: Circulation problems allow you to have both a lower and an upper bound on the flow through a particular arc. The upper bound I understand (like pipes, there's only so much stuff that can go ...
0
votes
1answer
152 views

Weighted Digraph

I am trying to implement a recursive depth first traversal on a weighted digraph, but it seems as if my output is always off. As in, I am getting extra visits to nodes. This is what I am currently ...
2
votes
2answers
777 views

how to use neato with spline and avoid mutual edges overlapping?

I have a directed graph with ~20 nodes that I need to have their positions fixed. So, I'm using neato to generate my svg file. The problem is that if I use the straight lines, I have edges overlapping ...
2
votes
2answers
168 views

C library for graphs

Is there a good C library for graph theoretic manipulations? I particularly need to calculate the strongly connected components of a directed graph. I have implemented Tarjan's algorithm in Ruby as ...
1
vote
1answer
105 views

Digraph minimal sub-graph algorithm

which algorithm can find directed sub-graph (сomposed of same vertices & minimal amount of edges), and all paths will remain ? G(V,E) --> find minimal G'(V,E') where V=V & E' in E, and all ...
3
votes
1answer
131 views

multiple digraphs in vim

As you probably know, there is ability to enter some specific characters in vim using digraphs (In input mode Ctrl+K Rg produces ® for example). Is there a way, to define hotkey, to enter the mode ...
0
votes
1answer
339 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 ...
1
vote
2answers
155 views

How can I find all 'long' simple acyclic paths in a graph?

Let's say we have a fully connected directed graph G. The vertices are [a,b,c]. There are edges in both directions between each vertex. Given a starting vertex a, I would like to traverse the graph ...
0
votes
2answers
537 views

Find all spanning trees of a directed weighted graph

I have found this paper so far. Is it outdated? Are there any faster and better implementations? By the way, Wikipedia says that there can be n^n-2 spanning trees in a undirected graph. How many ...
1
vote
1answer
377 views

Generate all possible subgraphs of a directed graph keeping the number of vertices

I have two lists of vertices: V and S. I would like to generate all possible directed graphs from V and S so, that each vertex from V has only one out-edge and exactly one in-edge, and each vertex ...
1
vote
1answer
380 views

Minimum spanning tree in a graph with multiple root vertices

I would like to know if there is an algorithm which computes a minimum spanning tree (optimum branching) in a directed graph given a set of root vertices between all of these root vertices, but not ...
4
votes
3answers
1k 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 ...
11
votes
3answers
937 views

Are digraphs and trigraphs in use today?

Given that there were once reasons to use digraphs and trigraphs in C and C++, does anyone put them in code being written today? Is there any substantial amount of legacy code still under maintenance ...
3
votes
1answer
2k views

Interactive directed graphs with SVG and Javascript

I have to add some interactive features to SVG directed graphs. So far the graphs I want to show are generated from a dot file and rendered as SVG. I'd like to know if there is some easy way to add ...
5
votes
1answer
823 views

What data structures to use for Dijkstra's algorithm in Erlang?

Disclaimer: The author is a newbie in Erlang. Imagine, we have a graph consisting of 1M nodes, and each node has 0-4 neighbours (the edges are emanating from each node to those neighbours, so the ...
5
votes
6answers
1k views

Finding a cycles in a graph using Prolog

We are given a graph with the following facts: edge(a,b) edge(a,c) edge(b,a) edge(c,d) edge(d,d) edge(d,e) edge(e,f) edge(f,g) edge(g,e) And we are asked to define a rule, cycle(X), that determines ...
1
vote
1answer
319 views

What is inside Erlang's digraph?

Disclaimer: The author is a newbie in Erlang. I would like to implement some kind of shortest-path algorithm in Erlang. There is a standard implementation of graph data structure in Erlang: ...
10
votes
5answers
2k views

Free C++ library for drawing flow diagrams or Directed graph?

I want to embed a flow diagram drawing canvas in my program. Users would possible to: draw "nodes" (rectangle nodes is enough) and "edges" (preferable to be orthogonal) to connect "nodes"; use mouse ...
0
votes
0answers
28 views

Find the middle of a series of edges in Java

First the context: I'm working on a road map application just like Google Maps. People can find a route between two specific addresses, but they should be able to use just the road name - that is ...
3
votes
2answers
1k views

MySQL Store Relationship (Family) Tree

I need to build a family tree in php and MySQL. I'm pretty surprised at the lack of open source customizable html family tree-building software there is out there, but I digress. I have spent a lot ...
4
votes
2answers
1k views

How can I get dot to draw connected subgraphs side by side?

This is what the generated graph looks currently: And here is the code for this: digraph { rankdir=TB; subgraph cluster01 { label="1.fázis" aSTART; node [shape = doublecircle]; ...
2
votes
1answer
194 views

Erlang digraph atomicity and isolation guarantees

Are digraph atomicity and isolation guarantees described anywhere? Especially: What state will another process see digraph in, if another process tries to access it (vertices(), out_neighbours() ...
2
votes
2answers
668 views

Javascript Graphing Library Digraph

I want to draw a DiGraph. Which Javascript Library can be used for this purpose ?
0
votes
1answer
100 views

Need help regarding how to implent this..choosing a best data structure

i want to analyze a combinational digital circuit. An ASCII file contains the description of the circuit, according to the following format: <name> <logic gate> <inputs> ...
4
votes
2answers
284 views

What is the best data structure and algorithm for comparing a list of strings?

I want to find the longest possible sequence of words that match the following rules: Each word can be used at most once All words are Strings Two strings sa and sb can be concatenated if the LAST ...
1
vote
3answers
175 views

Question the way graphs are taught

I'm from Argentina, but i think everybody who has ever take a Data Structures class know what a graph is. If you do, you might know what kind of implementations are "common" or "standar". It can be ...
2
votes
1answer
784 views

Getting the root (head) of a DiGraph in networkx (Python)

I'm trying to use networkx to do some graph representation in a project, and I'm not sure how to do a few things that should be simple. I created a directed graph with a bunch of nodes and edges, such ...
7
votes
1answer
175 views

'nested' template `>>` issue is solved. What about `<::`?

C++0x addresses the issue of consecutive closing angle brackets in template-id's, like in vector<vector<int>>. No space is required between > > any more. Does C++0x address the ...
5
votes
1answer
3k views

All possible paths from one node to another in a directed tree (igraph)

I use python binding to igraph to represent a directed tree. I would like to find all possible paths from one node in that graph to another one. Unfortunately, I couldn't find a ready to use function ...
8
votes
3answers
425 views

<: cannot begin a template argument list

I get an error <: cannot begin a template argument list on g++ compiler. Code template<typename T> class SomeClass; class Class; SomeClass<::Class>* cls;
2
votes
3answers
2k views

Graph incidence list implementation

I'm considering graph data structure implementations and am looking at the "incidence list" representation. There is a brief description of it here: Incidence list So each vertex in the graph stores ...
1
vote
1answer
410 views

Can the Jung2 graph library traverse a digraph

Does anyone know if the Java Jung2 graph library provides the in-built capability to traverse a Digraph given a start Vector? I did see that there's a BFSDistanceLabeler class that returns a map of ...
1
vote
3answers
844 views

Detecting mulitple cycles in a cyclic directed graph

I have a directed cyclic graph with more than one cycle in it and I need a way to detect (and list) each cycle present in the digraph. The graph can be seen here: ...
3
votes
2answers
730 views

Calculating total number of spanning trees containing a particular set of edges

I have tried the following approach: First I do edge contraction for all the edges in the given set of edges to form a modified graph. Then I calculate the total number of spanning trees, using the ...
7
votes
3answers
3k views

GraphSharp .Net Graph Layout Engine

I want to use the apparently fantastic GraphSharp library but the project has NO documentation. Specifically I'm interested in using the layout engine and not interested in the WPF control. I simply ...
13
votes
5answers
494 views

Is there a good digraph layout library callable from C++?

The digraphs represent finite automata. Up until now my test program has been writing out dot files for testing. This is pretty good both for regression testing (keep the verified output files in ...
36
votes
4answers
13k views

GraphViz - How to connect subgraphs?

In the DOT language for GraphViz, I'm trying to represent a dependency diagram. I need to be able to have nodes inside a container and to be able to make nodes and/or containers dependent on other ...
6
votes
1answer
638 views

State in Erlang Digraphs

The Erlang digraphs module surprised me by mutating state. When dealing with other data structure modules in Erlang, for instance the sets module, the instance of the data structure passed in, is ...
5
votes
3answers
655 views

Sparse Multidimensional Array or Matrix Libraries in .NET

I have a need for a sparse matrix in up to 4 dimensions in a .NET application. The size of the matrix (if represented as a .NET Array) would potentially top 400MB. The array is likely to be very ...
1
vote
5answers
1k views

Finding the path with the maximum minimal weight

I'm trying to work out an algorithm for finding a path across a directed graph. It's not a conventional path and I can't find any references to anything like this being done already. I want to find ...

1 2