Tagged Questions

A graph is a mathematical structure that contains a collection of vertices or 'nodes' and a collection of edges that connect pairs of vertices. Graphs can be undirected or directed, edges may be directed from one vertex to another.

learn more… | top users | synonyms

170
votes
23answers
62k views

Graph visualization code in javascript? [closed]

Hi. I have a data structure that represents a directed graph, and I want to render that dynamically on an HTML page. Does anyone know of any javascript code that can do a reasonable job with graph ...
52
votes
7answers
33k 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 being a node and a ...
32
votes
12answers
5k views

Good algorithm for finding the diameter of a (sparse) graph?

I have a large, connected, sparse graph in adjacency-list form. I would like to find two vertices that are as far apart as possible, that is, the diameter of the graph and two vertices achieving it. ...
28
votes
20answers
5k views

What are some examples of problems that are best solved with graphs? [closed]

After reading Stevey Yegge's Get That Job At Google article, I found this little quote interesting: Whenever someone gives you a problem, think graphs. They are the most fundamental and flexible ...
24
votes
9answers
27k views

Finding all cycles in graph

How can I find (iterate over) ALL the cycles in a directed graph from/to a given node? For example, I want something like this: A->B->A A->B->C->A but not: B->C->B
21
votes
6answers
719 views

Travelling salesman with repeat nodes & dynamic weights

Given a list of cities and the cost to fly between each city, I am trying to find the cheapest itinerary that visits all of these cities. I am currently using a MATLAB solution to find the cheapest ...
18
votes
14answers
2k views

When are interfaces needed?

(In the context of .NET for what its worth) I tend to not use inheritance and rarely use interfaces. I came across someone who thinks interfaces are the best thing since spit. He uses them ...
18
votes
8answers
4k views

Can you suggest a good book on graphs and graph algorithms?

Can you suggest a good book or other resource on graphs and graph algorithms? Something that will cover some basics but also advanced problems and algorithms.
18
votes
11answers
20k views

Graph Algorithm To Find All Connections Between Two Arbitrary Vertices

I am trying to determine the best time efficient algorithm to accomplish the task described below. I have a set of records. For this set of records I have connection data which indicates how pairs of ...
17
votes
3answers
195 views

What is an efficient algorithm for counting the number of triangles in a graph?

What is an efficient algorithm for counting the number of triangles in an undirected graph )(where a graph is a set of vertices and edges)? I've been searching Google and reading through my shelf of ...
16
votes
6answers
3k views

Graph theory in python

I was wondering how people deal with graph theory in python? How is a graph stored? Are there libraries for this? For example how would I input a graph and then find its Chromatic polynomial? Or its ...
13
votes
1answer
547 views

Graph/lattice simplification

I'm working on data structure for graph cut algorithm. Problem is to make different cuts on shortest paths. I made data structure for which I'm not sure about properties. Input is directed graph of ...
13
votes
4answers
1k views

Efficient way to recursively calculate dominator tree?

I'm using the Lengauer and Tarjan algorithm with path compression to calculate the dominator tree for a graph where there are millions of nodes. The algorithm is quite complex and I have to admit I ...
12
votes
5answers
1k views

Find all chordless cycles in an undirected graph

How to find all chordless cycles in an undirected graph? For example, given the graph 0 --- 1 | | \ | | \ 4 --- 3 - 2 the algorithm should return 1-2-3 and 0-1-3-4, but never 0-1-2-3-4. ...
12
votes
5answers
611 views

Calculate shortest path through a grocery store

I'm trying to find a way to find the shortest path through a grocery store, visiting a list of locations (shopping list). The path should start at a specified startposition and can end at multiple ...
12
votes
5answers
1k views

count of distinct acyclic paths from A[a,b] to A[c,d]?

I'm writing a sokoban solver for fun and practice, it uses a simple algorithm (something like BFS with a bit of difference). now i want to estimate its running time ( O and omega). but need to know ...
12
votes
4answers
2k views

Calculate Family Relationship from Genealogical Data

I would like to be able to calculate the family relationship between two individuals in a family tree, given the following data schema (simplified from my actual data schema, only showing columns that ...
12
votes
10answers
643 views

Algorithms for helping humans choose (kitten war, for instance)

Ok, I'm facing an imminent addition to my family, and working through choice of names. I've considered writing software to display names and force me to choose which I like better, similar to kitten ...
11
votes
3answers
106 views

Unit Testing Approximation Algorithms

I'm working on an open-source approximation algorithms library for graphs and networks using some popular python packages as a base. The main goal is to encompass up-to-date approximation algorithms ...
11
votes
11answers
727 views

Find all subtrees of size N in an undirected graph

Given an undirected graph, I want to generate all subgraphs which are trees of size N, where size refers to the number of edges in the tree. I am aware that there are a lot of them (exponentially ...
11
votes
3answers
1k views

All minimum spanning trees implementation

I've been looking for an implementation (I'm using networkx library.) that will find all the minimum spanning trees (MST) of an undirected weighted graph. I can only find implementations for ...
11
votes
11answers
870 views

How can I learn higher-level programming-related math without much formal training?

I haven't taken any math classes above basic college calculus. However, in the course of my programming work, I've picked up a lot of math and comp sci from blogs and reading, and I genuinely believe ...
11
votes
7answers
2k views

Secret santa algorithm

Every Christmas we draw names for gift exchanges in my family. This usually involves mulitple redraws until no one has pulled their spouse. So this year I coded up my own name drawing app that takes ...
10
votes
2answers
181 views

Generate a DAG from a poset using stricly functional programming

Here is my problem: I have a sequence S of (nonempty but possibly not distinct) sets s_i, and for each s_i need to know how many sets s_j in S (i ≠ j) are subsets of s_i. I also need incremental ...
10
votes
6answers
965 views

Algorithm for Finding Redundant Edges in a Graph or Tree

Is there an established algorithm for finding redundant edges in a graph? For example, I'd like to find that a->d and a->e are redundant, and then get rid of them, like this: => Edit: Strilanc ...
9
votes
5answers
7k views

How to draw a graph in LaTeX?

First of all, let me say I'm using LyX, though I have no problem using ERT. Secondly, what is the most simplest way to draw a simple graph like this in Latex? I've seen some documents with graphs ...
9
votes
8answers
675 views

Algorithm to calculate the most energy efficient ad-hoc network

I have a (theoretical) network with N nodes, each with their own fixed location. Each node sends one message per cycle, which needs to reach the root either directly or via other nodes. The energy ...
9
votes
5answers
5k views

Bron-Kerbosch algorithm for clique finding

Can anyone tell me, where on the web I can find an explanation for Bron-Kerbosch algorithm for clique finding or explain here how it works? I know it was published in "Algorithm 457: finding all ...
8
votes
3answers
199 views

Route problem in a graph: minimize average edge cost instead of total cost

I have a weighted graph, no negative weights, and I would like to find the path from one node to another, trying to minimize the cost for the single step. I don't need to minimize the total cost of ...
8
votes
3answers
568 views

Are There Any Online Graph Algorithms Courses Similar to MIT OCW?

I have a new manager, and in our initial meetings, he has suggested that for the product he oversees, a familiarity with graph algorithms is desirable. Now I've had the usual undergrad and masters ...
8
votes
2answers
321 views

Graph theory - force based autolayout algorithm

Just want to check I have my theory right before I start implementing. Constants: m = mass of vertex (all the same - probably set this to radius of node) k = constant edge force. l = length of edge ...
8
votes
1answer
540 views

Hypergraph Visualization

A hypergraph is a generalization of a graph where the edges may include more than two vertices. Here's an example from the wikipedia article: I'm looking for a good tool for standard visualization ...
8
votes
4answers
908 views

Question from Interview, Retrieve alphabetic order from dictionary [closed]

My girlfriend got this question in an interview, and I liked it so much I thought I'd share it... Write an algorithm that receives a dictionary (Array of words). The array is sorted lexicographically, ...
8
votes
5answers
8k views

Kruskal vs Prim

I was wondering when one should use Prim's algorithm and when Kruskal's to find the minimum spanning tree? They both have easy logics, same worst cases, and only difference is implementation which ...
7
votes
2answers
296 views

Linear time algorithm to make a graph strongly connected

We have a weakly acyclic digraph. Also we are given a set A which holds vertices of G that have in-degree zero and a set B which holds vertices that have out-degree zero. (size of A is smaller then ...
7
votes
1answer
144 views

how to find Connected Component dynamically

Using disjoint-set data structure can easily get connected component of Graph. And, it just supports Incremental Connected Components. However, in my case, removing edge is very common so that I am ...
7
votes
3answers
225 views

How could I evaluate the difficulty of a graph-coloring puzzle?

I'm developing a small HTML Canvas & JavaScript based game to train myself and I choose to create a map-colouring puzzle game. I initially planed to set the puzzle difficulty using the time a ...
7
votes
4answers
445 views

Maximum weight connected subgraph in an directed acyclic graph

I am working on a research problem involving logic circuits (which can be represented as DAGs). Each node in the DAG has a given weight, which can be negative. My objective is to find a connected ...
7
votes
1answer
196 views

how to find mother vertex in a directed graph in O(n+m)?

A mother vertex in a directed graph G = (V,E) is a vertex v such that all other vertices G can be reached by a directed path from v Give an O(n+m) algorithm to test whether graph G contains a mother ...
7
votes
5answers
501 views

Public Transportation using Buses in City

I am developing a Journey Planner website. There are few things that are simple in this case currently i.e. Right now the website will only be able to plan bus routes, the timings of buses are not ...
7
votes
6answers
449 views

Shortest path on a graph where distances change dynamically? (maximum energy path)

I'm trying to find the shortest path between two maxima on a discrete energy landscape whereby the shortest path is that which reduces the least in height over the course of the total path. Probably ...
7
votes
4answers
3k views

Construct adjacency matrix in MATLAB

Consider a set of points arranged on a grid of size N-by-M. I am trying to build the adjacency matrix such that neighboring points are connected. For example, in a 3x3 grid with a graph: 1-2-3 | | | ...
7
votes
3answers
301 views

Generating a random cubic graph with uniform probability (or less)

While this may look like homework, I assure you it's not. It stems from some homework assignment I did, though. Let's call an undirected graph without self-edges "cubic" if every vertex has degree ...
7
votes
5answers
1k views

A two way minimum spanning tree of a directed graph

Given a directed graph with weighted edges, what algorithm can be used to give a sub-graph that has minimum weight, but allows movement from any vertex to any other vertex in the graph (under the ...
7
votes
2answers
2k views

graph algorithms on GPU

the current GPU threads are somehow limited (memory limit, limit of data structures, no recursion...). do you think it would be feasible to implement a graph theory problem on GPU. for example ...
7
votes
4answers
878 views

Finding all shortest paths from every pair of nodes on a graph

I have about 70k nodes, and 250k edges, and the graph isn't necessarily connected. Obviously using an efficient algorithm is crucial. What do you recommend? As a side note, I would appreciate advice ...
7
votes
2answers
810 views

Register allocation and spilling, the easy way?

I'm looking for a way to allocate local variables to registers. I'm aware of a couple of serious methods for doing it (namely, those mentioned on Wikipedia), but I'm stuck on how "spilling" is ...
7
votes
8answers
1k views

What algorithm can I use to find the shortest path between specified node types in a graph?

This is the problem: I have n points (p1, p2, p3, .. pn), each of them can connect to any other with a determined cost x. Each point belongs to one of a set of point-types (for example "A" "B" "C" ...
7
votes
4answers
1k views

Efficient way to practice graph theory algorithms

I just read about the breadth-first search algorithm in the Introduction to Algorithms book and I hand simulated the algorithm on paper. What I would like to do now is to implement it in code for ...
7
votes
4answers
1k views

How can I prove the “Six Degrees of Separation” concept programmatically?

I have a database of 20 million users and connections between those people. How can I prove the concept of "Six degrees of separation" concept in the most efficient way in programming? link to the ...

1 2 3 4 5 10