2
votes
2answers
95 views
Graph Theory: Find the Jordan center?
I'm trying to find the set of vertices that minimizes their distance to other vertices on a weighted graph. Based on a cursory wikipedia search, I think that this is called the Jordan Center. What are …
1
vote
8answers
125 views
Graph theory question, Java. Which algorithm to achieve the following.
I have a graph, with X nodes and Y edges. Weighted edges. The point is to start at one node, and stop at another. Now here comes the problem;
Visualize the problem. The edges are roads, and the edge …
0
votes
3answers
41 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 calculate a special …
2
votes
1answer
47 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 interested in), but for …
2
votes
4answers
114 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 limit. The more the …
3
votes
3answers
151 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 heap?
Wikipedia …
1
vote
2answers
108 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 to eat all the …
1
vote
1answer
72 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 this problem are …
2
votes
2answers
225 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 expression to organize …
2
votes
8answers
207 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-first search, although …
1
vote
3answers
161 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 implemented Dijkstra's …
2
votes
5answers
122 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} and {B, D}. My first …
0
votes
1answer
73 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, MySql, Oracle, …
0
votes
2answers
47 views
Given a Spanning Tree and an Edge Not on the Spanning Tree, How to Form a Cycle Base?
I have a graph with Edge E and Vertex V, I can find the spanning tree using Kruskal algorithm (or any other traverse-backtrack-traverse-again kind of algorithms), now I want to find all the cycle …
1
vote
4answers
142 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 the reference I have …
