vote up 7 vote down star
4

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:

alt text => alt text

Edit: Strilanc was nice enough to read my mind for me. "Redundant" was too strong of a word, since in the example above, neither a->b or a->c is considered redundant, but a->d is.

flag

Can we instead consider B--->C to be redundant? – Zach Scrivena Feb 4 at 7:52
Does redundant mean "an edge X->Y is redundant if there is a non edge path from X to Y" or are you simply looking for a spanning tree ? – David Lehavi Feb 4 at 8:24
@Zach: No, B->C is not redundant, because if it is removed there is no path in the resulting graph from B to C. – ShreevatsaR Feb 4 at 14:52
Sorry to have made your comments incorrect, but I've updated with a better example. – Ryan Fox Feb 5 at 0:55

5 Answers

vote up 9 vote down check

You want to compute the smallest graph which maintains vertex reachability.

This is called the transitive reduction of a graph. The wikipedia article should get you started down the right road.

link|flag
Thanks, that's exactly what I'm looking for. The Wikipedia article even mentions 'tred' for Graphviz, which is especially handy, since that's what I'm working with. – Ryan Fox Feb 5 at 0:50
There it is. I could see the transitive closure was close. – Charlie Martin Feb 5 at 2:09
vote up 1 vote down

Check this: Minimum Spanning Tree

link|flag
If all he needs is get rid of redundant edges, he doesn't have to worry about a minimum spanning tree. Any ole spanning tree will do. – Frederick Feb 4 at 6:56
Also remember "Given a connected, undirected graph, a spanning tree of that graph is a subgraph which is a tree and connects all the vertices together." Yet his graph isn't undirected. – Robert Gould Feb 4 at 7:10
vote up 1 vote down

Several ways to attack this, but first you're going to need to define the problem a little more precisely. First, the graph you have here is acyclic and directed: will this always be true?

Next, you need to define what you mean by a "redundant edge". In this case, you start with a graph which has two paths a->c: one via b and one direct one. From this I infer that by "redundant" you mean something like this. Let G=< V, E > be a graph, with V the set of vertices and E ⊆ V×V the set of edges. It kinda looks like you're defining all edges from vi to vj shorter than the longest edge as "redundant". So the easiest thing would be to use depth first search, enumerate the paths, and when you find a new one that's longer, save it as the best candidate.

I can't imagine what you want it for, though. Can you tell?

link|flag
vote up 1 vote down

A sub-graph of a given graph which contains no "redundant edges" is called a 'spanning tree' of that graph. For any given graph, multiple spanning trees are possible.

So, in order to get rid of redundant edges, all you need to do is find any one spanning tree of your graph. You can use any depth-first-search or breadth-first-search algorithm and continue searching till you have visited every vertex in the graph.

link|flag
It is late, but is what he describes really a spanning tree? – Charlie Martin Feb 4 at 6:56
Yes. He wants to have a sub-graph which contains all the vertices of the original graph with only one way to reach from one vertex to another. That's exactly what a spanning tree is. – Frederick Feb 4 at 7:04
vote up 0 vote down

I think the easiest way to do that, actually imagine how it would look in the real work, imagine if you have joints, Like

(A->B)(B->C)(A->C), imagine if distance between near graphs is equals 1, so

(A->B) = 1, (B->C) = 1, (A->C) = 2.

So you can remove joint (A->C).

In other words, minimize.

This is just my idea how I would think about it at start. There are various articles and sources on the net, you can look at them and go deeper.

Resources, that Will help you:

Algorithm for Removing Redundant Edges in the Dual Graph of a Non-Binary CSP

Graph Data Structure and Basic Graph Algorithms

Google Books, On finding minimal two connected Subgraphs

Graph Reduction

Redundant trees for preplanned recovery in arbitraryvertex-redundant or edge-redundant graphs

link|flag
This type of graph reduction is specifically called a transitive reduction in set-theoretical terms, by the way: en.wikipedia.org/wiki/Transitive_reduction – Gracenotes Feb 4 at 7:06
Yeah, but still You can use algos from various areas to solve this problem, by your needs. – Lukas Ĺ alkauskas Feb 4 at 7:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.