1
vote
1answer
21 views
How to compress repeating branches in directed graph?
I work a lot with directed graphs resulting from heap dumps of Java programs. One thing that characterizes them is that they contain lots of repeating patterns. I would like to find a way of …
0
votes
3answers
93 views
Use Dijkstra’s to find a Minimum Spanning Tree?
Dijkstra's is typically used to find the shortest distance between two nodes in a graph. Can it be used to find a minimum spanning tree? If so, how?
Edit: This isn't homework, but I am trying to …
0
votes
1answer
37 views
Best way to test for total reachability
I have a set of nodes, each of which is connected to at least one other node. I would like to know if the connections are such that each node is reachable from every other. For example:
1--2
|
…
4
votes
8answers
323 views
Where can I learn more about “ant colony” optimizations?
I've been reading things here and there for a while now about using an "ant colony" model as a heuristic approach to optimizing various types of algorithms. However, I have yet to find an article or …
2
votes
1answer
68 views
Algorithms to eliminate or display outliers in a dataset.
I am trying to visualize a large multi-dimensional dataset. Each dimension has a different range. Values in one column may range between 0-100 while values in another could range from a few hundred …
1
vote
8answers
138 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 …
2
votes
2answers
122 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 …
9
votes
6answers
4k 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 …
1
vote
4answers
176 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 …
0
votes
3answers
45 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 …
1
vote
4answers
422 views
Graphs: find a sink in less than O(|V|) - or show it can’t be done
I have a graph with n nodes as an adjacency matrix.
Is it possible to detect a sink in less than O(n) time?
If yes, how? If no, can you prove it?
Sink: a node that has incoming edges from all other …
2
votes
1answer
57 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 …
8
votes
10answers
226 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 …
2
votes
4answers
121 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
177 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 …
