The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
56 views

How to declare two structs which have members of the others type?

I am trying to make a directed graph, So I made a Graph class and it has a private edge struct and a private node struct. I would like my edges to have a node member which is the node that the edge ...
5
votes
1answer
124 views

What is the most standard file format and notation for persisting expressive directed graphs?

I am interested in persisting individual directed graphs. This question is not asking for a full-scale graph database solution, but for a document format that I can use to save and individual ...
0
votes
1answer
57 views

Dijkstra algorithm - negative weights only from source

I wonder if we can use Dijkstra algorithm if the graph has some negative-weighted edges, but those start only from source. I can't find any problem with it, but also can't give a solid proof. Any ...
1
vote
2answers
70 views

Find path between 2 vertices with x red vertices

I've tried a couple of approaches and they all ended in a dead end. The question: Given a G=(V,E) a directed unweighted graph in which every vertex is colored red or blue. Let there be vertices s and ...
2
votes
1answer
59 views

Find incident edges of given vertex in a directed graph using Python iterator

I am writing a class to find the incident edges of a given vertex in a directed graph. The class uses an iterator to traverse the adjacency lists in the graph. However, I am having trouble returning ...
0
votes
2answers
772 views

Adjacency Matrix -> Directed graph -> DFS

This is the code my friends and I have come up with so far after fiddling around. What we are trying to do is read in the adjacency matrix (input.txt), then create a directed graph out of it so we can ...
2
votes
1answer
59 views

Composite pattern for a directed and weighted graph

What's the best way to use the composite pattern for a directed graph? The graph represents the time progress of a software . The nodes are events of the software (for example the starting of an ...
0
votes
0answers
40 views

Composite Pattern and directed graph [closed]

What's the best way to use the composite pattern for a directed graph? The graph represents the time progress of a software . The nodes are events of the software (for example the starting of an ...
1
vote
2answers
49 views

Making a directed graph from a list of edges in javascript

I have a list of edges where the it goes from key to value so a => [x,y,z] meaning a is connected to x, to y and to z I have a long list of these and I want to visualize it, preferably with ...
0
votes
0answers
60 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) ...
0
votes
1answer
338 views

d3.js arrow directed graph: adding nodes/links on the fly

I've tried to use this this arrow-head force directed graph example (based on d3.js) And I want to dynamically add nodes/links to the graph, without restarting the animation. I'm no expert of ...
0
votes
1answer
81 views

Ruby on Rails - Modelling a Directed Graph

I'm trying to model a directed graph for my ruby on rails application I have two Models, Tag and Connection class Connection < ActiveRecord::Base attr_accessible :cost, :from_id, :to_id ...
0
votes
0answers
96 views

Minimum number of edges - directed graph with given sums of weights

Let's consider a directed graph with positive edge weights. For every vertex we determine the difference D = (sum of weights of edges directed FROM this vertex)-(sum of weights of edges directed INTO ...
0
votes
1answer
108 views

Finding all cycles in directed graphs of length <= k

Is there a way of modifing the algorithm in Finding all cycles in undirected graphs to consider edges as directed and only cycles of length <= k ?
0
votes
1answer
70 views

how does one predict edges / links / connections on a weighted directed graph network?

Given an adjacency matrix A for a weighted, directed graph (so matrix elements are not just 0/1 and the matrix is not symmetric), are there any good methods for predicting new edges? I have a VERY ...
1
vote
1answer
63 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 ...
1
vote
2answers
105 views

find first n edges,breadth first search

Problem: To find first n nearest edges(2000) given an edge object in a directed cyclic graph. Data Structure: Link class and Node class. The link class has a from and to node, which points to ...
1
vote
3answers
102 views

Are Trees Directed or Undirected Graphs?

I have read that Trees are special cases of Graphs. Graphs can be directed or undirected. but if we consider tree as a data structure is it directed or undirected graph?
0
votes
0answers
207 views

Java Exception while reading a text file

back with new features in 'file.txt' are these lines: [noduri1] {x0;140;104;31;50;} {x1;361;132;55;50;} [arce1] {a0;160;143;386;173;0;1;} [noduri2] {x2;192;82;27;50;} ...
2
votes
2answers
176 views

graph-tool: Draw text on edges

for my thesis I need to draw some probabilistic control flow graphs. i.e. control flow graphs with probabilities depicted on the edges. I found graph-tool which seems quite useful, since it can use ...
0
votes
1answer
68 views

Error looking through a directed graph c++ Segmentation fault

The user will input the number of nodes in a graph followed by an overall "planet" name. then they will input where is the name of the planet and is the number of locations in this ...
2
votes
2answers
87 views

An idea as to how to approach a directed graph

I am trying to write a program using a directed graph (which I know about but have never implemented) to simulate a network of transportation. The user will input a planet name followed by an integer ...
0
votes
1answer
64 views

readfile and map to directed graph

i have read file function which will read a txt file. after i read it, i put the value to a list. below is sample data: public void readDisplayClient() { DisplayClient dc = null; try { // ...
1
vote
1answer
226 views

bellman ford algorithm trace

I don't know where else to post this question, I just want to know if I did this trace correct. I am given this diagram and here is the question: Show the trace of the Bellman-Ford algorithm on ...
3
votes
2answers
572 views

Finding all paths in directed graph with specific cost

Suppose we have the directed, weighted graph. Our task is to find all paths beetween two vertices (source and destination) which cost is less or equal =< N. We visit every vertex only once. In ...
1
vote
1answer
162 views

using CSV property to set link length, node size d3

Following the example given by mbostock for creating a force graph with a csv: How to convert to D3's JSON format? http://bl.ocks.org/2949937 I'm creating a force graph with D3 but am unsure ...
2
votes
2answers
393 views

A fast way to find connected component in a 1-NN graph?

First of all, I got a N*N distance matrix, for each point, I calculated its nearest neighbor, so we had a N*2 matrix, It seems like this: 0 -> 1 1 -> 2 2 -> 3 3 -> 2 4 -> 2 ...
6
votes
8answers
359 views

Data structure equivalent to map ( in java ) for large datasets

Is there an already implemented data structure that I can use in order to assign to an object (in my case an Edge), an integer? I am reading a graph from a file , 10 mil vertices , 60 mil edges and I ...
2
votes
1answer
108 views

Why is my update function creating an entirely new force-directed graph?

I'm looking at this other question and this example provided in that question, and I cannot quite get my own update function to work: update = function() { path = ...
0
votes
1answer
140 views

SSRS 2008 - Create a chart of a directed graph to visualise ETL jobs

I can't find anything that hints towards native support for charting graph data structures (otherwise known as "network maps" by some), and in my case, a directed graph. I'm wanting to create a ...
1
vote
1answer
229 views

create force directed layout gexf file with node position generation

In my Database i've got nodes and edges. Position must have generated at gexf generation, the node must not overlap and generate this kind of Graph: ...
1
vote
0answers
38 views

Object cloning with cyclic reference chain

I'm running some operations on a graph in memory, which modify the graph itself. I need to repeat these operations some number of times, and subsequent repetitions must work on a fresh copy of the ...
1
vote
0answers
92 views

better algorithm to check if directed graph is dag or not [duplicate]

Possible Duplicate: Best algorithm for detecting cycles in a directed graph This is a homework that design an algorithm to check if directed graph is dag or not. The better algorithm that i ...
1
vote
1answer
209 views

Cliques for directed graphs in igraph

I'm working on a Twitternetwork based on follower-relations in R. In this Network I want to determine the size of the largest cliques within everybody can read each others tweets in his or her ...
0
votes
2answers
84 views

Prune leaf components of a directed graph

Given a directed graph and some of its nodes, how to prune the nodes that cannot reach any of the given nodes. (I term it leaf components, which I am not sure is a correct term) Are there any known ...
1
vote
1answer
201 views

Finding the heaviest vertex path with length k in a graph

Duplicate of: Algorithm to find max cost path of length N in matrix, from [0,0] to last row Short summary of the problem: Input: A square graph (n^2 nodes) with numbers attached to the ...
0
votes
0answers
60 views

Overlaying a Directed Graph on a Map [closed]

I want to overlay a directed graph over a large area of the earth. Does anybody know a simple package in a programming language or drawing softwares (ex. Gephi, etc) that does this? I need the package ...
2
votes
2answers
212 views

Drawing tidy graphs with shared parents and children

I'm working on an HTML and Javascript application that will take a git tree and display the commits and merges as a directed graph (like git log --graph). I've read a bit on the Reingold-Tilford tidy ...
0
votes
2answers
1k views

Print in-degree and the out-degree of every vertex

I am struggling with this algoritm question: How would I write a theta(m+n) algorithm that prints the in-degree and the out-degree of every vertex in an m-edge, n-vertex directed graph where the ...
0
votes
0answers
69 views

Generate GraphViz-style lines linking icons in HTML table cells

I have a C++ server application that, among other things, outputs data as an HTML table. Some table cells contain a simple PNG icon representing a node in a directed graph. Placing the nodes image ...
0
votes
0answers
113 views

Directed Graph Library/Framework for Objective-C

I'm looking for an alternative to Graphviz, ideally a framework or library that works and plays nicely with Objective-C - there seem to not be any alternatives out there, and Graphviz has issues with ...
0
votes
0answers
535 views

Why are new nodes in a D3 force directed graph not showing up consistently?

I've been working with d3 for a while now in an attempt to create an interactive ecosystem explorer tool that maps out relationships between species. Recently I've tried adding a feature that lets ...
0
votes
0answers
47 views

Creating a Hyperlink Graph from ASP.Net

I currently have to analyze a quite big ASP.Net Project, for this it would be nice to have a graph that shows how the different Pages are referred to from one another. So what would be great is a ...
1
vote
1answer
178 views

Topological sort of subset of vertices of digraph

I am writing a program in C# 4.0 that I've abstracted to the following (I mention the language so that you know what libraries I have to work with; no third-party libraries): Let S = { s1, s2, s3, ...
1
vote
1answer
247 views

Lemon Graph Library C++ - Directed Graph

HI I am looking at Lemon to handle my pathfinding.. as it has some neat search algorithms and shortest paths stuff and all that.. The thing is I am already stuck right at the start in understadning ...
0
votes
0answers
124 views

Finding minimum weighted cycle in a digraph with negative edge weights

I have a directed graph G=(V,E), where edge weights may or may not be negative. I want to find the minimum cycle in the graph (of course not visiting the same vertex twice in the cycle). I think I ...
1
vote
1answer
400 views

Directed Adjacency Lists

I have asked this question in a variety of ways, starting with: When you have an adjacency list, does order matter? Say I had the adjacency list {1, 2, 5} is that equivalent to {2, 1, 5}? Or ...
1
vote
1answer
185 views

directed graphs with a given root node - match another directed graph for equality

There is a directed graph having a single designated node called root from which all other nodes are reachable. Each terminal node (no outgoing edges) takes an string value. Intermediate nodes have ...
1
vote
1answer
809 views

Create directed Graph with movable nodes (with QT / Boost)

I'm looking for a tool to create directed graphs where I can move the nodes around and expand / shrink the graph when I, for example, click on a node. I want to use the graph in a QT interface. I ...
1
vote
1answer
766 views

C++ adjacency list of pointers and structs

Working on adjacency list --> directed weighted graph One class looks like this, i.e. header: class CGraph; class CMap { public: //voided constructors and destructors //functions one is: ...

1 2 3