Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
3answers
2k views

Why are there digraphs in C and C++?

I learned today that there are digraphs in C99 and C++. The following is a valid program: %:include <stdio.h> %:ifndef BUFSIZE %:define BUFSIZE 512 %:endif void copy(char d<::>, ...
17
votes
2answers
5k 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 ...
12
votes
4answers
380 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 ...
10
votes
2answers
237 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 ...
7
votes
5answers
414 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 ...
7
votes
1answer
140 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 ...
7
votes
6answers
1k views

C++ alternative tokens?

I've just read this nice piece from reddit. They mention "and" and "or" being "Alternative Tokens" to && and || I was really unaware of these just till now. Of course, everybody knows about ...
6
votes
3answers
771 views

copyright character in vim

I used to get this copyright symbol in vim earlier through some keys' combination. Can someone help me with it now? I simply fail to recollect it. Also, if possible, share some more of such ...
5
votes
3answers
457 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 ...
4
votes
3answers
182 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 ...
4
votes
1answer
264 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 ...
4
votes
5answers
216 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 ...
4
votes
2answers
316 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]; ...
4
votes
2answers
214 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 ...
4
votes
3answers
244 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;
4
votes
2answers
1k 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 ...
4
votes
1answer
450 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 ...
3
votes
1answer
50 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 ...
3
votes
1answer
222 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 ...
3
votes
2answers
366 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 ...
2
votes
2answers
562 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 ...
2
votes
1answer
837 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 ...
1
vote
2answers
36 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 ...
1
vote
1answer
69 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 ...
1
vote
1answer
125 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() ...
1
vote
1answer
266 views

Javascript Graphing Library Digraph

I want to draw a DiGraph. Which Javascript Library can be used for this purpose ?
1
vote
3answers
132 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 ...
1
vote
1answer
252 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 ...
1
vote
3answers
829 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
283 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
370 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: ...
1
vote
5answers
638 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 ...
0
votes
1answer
35 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 ...
0
votes
1answer
37 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 ...
0
votes
1answer
106 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 ...
0
votes
0answers
9 views

Converting chains of nodes to single node in digraph

Below is the page-path digraph for the Choose Your Own Adventure book "Daredevil Park": Despite the enticing title, there is very little choice: once you're on page 23, for example, you must ...
0
votes
1answer
145 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: ...
0
votes
0answers
147 views

Directed Weighted Graph in JGraphT Library [closed]

How can i create Directed Weighted Graph using JGraphT Library
0
votes
0answers
15 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 ...
0
votes
1answer
93 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> ...