0
votes
3answers
37 views
Implementation Detail for Graph Analysis Algorithms
Let's say I have a graph with "heavy" nodes, that is each node is an object that is already carrying a lot of data. I want to do a graph transformation that requires me to calcula …
2
votes
1answer
45 views
Partitioning of a directed graph
I'm trying to partition a network into one or more parts based on a set of critical vertices. I've got code that I believe solves my problem (at least, it has for the cases I'm int …
2
votes
4answers
104 views
Longest circle in graphs
Hi folks,
I want to solve the following problem:
I have a DAG which contains cities and jobs between them that needs to be done. The jobs are for trucks which can load a definied …
3
votes
3answers
136 views
Are there faster algorithms than Dijkstra?
Given a directed, connected graph with only positive edge weights, are there faster algorithms for finding the shortest path between two vertices, than Dijkstra using a fibonacci h …
2
votes
2answers
221 views
Six degrees of Kevin Bacon in Perl
First yes, this is a homework project for my Perl class. I am not looking for the answer (although that would be sweet). As I understand it I need to use a BFS and a regular expr …
8
votes
10answers
206 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 …
1
vote
1answer
65 views
Algorithm for a directed graph problem
Please help me out with an algorithm for the following problem -
Given a collection of facts, we would like to get rid of as much redundancy as possible. The facts involved in th …
1
vote
2answers
99 views
Pac-Man representation with Finite State Automaton
Hi there,
Consider a game similar to pac-mac that we want to represent it with an FSA graph. We have a maze (table) and there are berries into it in random positions. The goal is t …
2
votes
8answers
184 views
What is breadth-first search useful for?
Usually when I've had to walk a graph, I've always used depth-first search because of the lower space complexity. I've honestly never seen a situation that calls for a breadth-fir …
1
vote
4answers
115 views
Algorithms to Identify All the Cycle Bases in a UnDirected Graph
I have an undirected graph with Vertex V and Edge E. I am looking for an algorithm to identify all the cycle bases in that graph.
I think Tarjans algorithm is a good start. But t …
2
votes
5answers
107 views
How do I partition a bipartite graph by color?
For instance, suppose I have a graph G = (V, E) where
V = {A, B, C, D}
E = {(A, B), (A,D), (C, D)}
This graph is bipartite, and thus can be split into two disjoint sets {A, C} an …
1
vote
3answers
158 views
Shortest total path among set of Latitude/Longitudes
I have a set of 52 or so latitude/longitude pairs. I simply need to find the shortest path through all of them; it doesn't matter where staring point or ending point is.
I've imp …
3
votes
1answer
90 views
Are there any online algorithms for planarity testing?
I know that planarity testing can be done in O(v) (equivalently O(e), since planar graphs have O(v) edges) time.
I wonder if it can be done online in O(1) amortized time as each e …
0
votes
6answers
123 views
What’s the name for directed trees with edges pointing towards the root?
What do you call a graph that's almost an arborescence, but where the edges go in the opposite direction? That is, a directed graph with a center node, where every node has exactly …
0
votes
1answer
65 views
Why don’t the mainstream DBMSs have graph functionality?
Relational databases are frequently used to store graphs in all their many flavors (trees, directed graphs, undirected graphs, ...).
Why then do none of the major DBMSs (Microsoft …
