vote up 2 vote down star
1

What is a good algorithm for getting the minimum vertex cover of a tree?

INPUT:

The node's neighbours.

OUTPUT:

The minimum number of vertices.

flag
1  
Sounds like homework. – Aiden Bell May 29 at 16:15
Sounds like revising for an exam and "not finding" the lecture notes. – DrJokepu May 29 at 16:21
+1 just for stumping the great and mighty Welbog. – Rich B May 29 at 16:26

3 Answers

vote up 3 vote down check

I hope here you can find more related answer to your question.


I was thinking about my solution, probably you will need to polish it but as long as dynamic programing is in one of your tags you probably need to:

  1. For each u vertex define S+(u) is cover size with vertex u and S-(u) cover without vertex u.
  2. S+(u)= 1 + Sum(S-(v)) for each child v of u.
  3. S-(u)=Sum(max{S-(v),S+(v)}) for each child v of u.
  4. Answer is max(S+(r), S-(r)) where r is root of your tree.


After reading this. Changed the above algorithm to find maximum independent set, since in wiki article stated

A set is independent if and only if its complement is a vertex cover.

So by changing min to max we can find the maximum independent set and by compliment the minimum vertex cover, since both problem are equivalent.

link|flag
it dosen't help much,I'm looking for a pseudocode or a more detailed explanation on the algorithm – John Retallack May 29 at 17:19
You need to find a way to somehow count the size of cover using information of each vertex, therefore define for each vertex variable which will count for you size there vertex included or not, generally described algorithm will return you the size value, but you can easily extend it to build a sort of the table there you will store your choice at each step. – Artem Barger May 29 at 17:30
it dosen't necessarily need to be dynamic-programming – John Retallack May 29 at 17:40
so perform exhaustive search. I think you are looking for more effective way, so it would be a dynamic programming. – Artem Barger May 29 at 18:08
exhaustive search won't work,too inefficient – John Retallack May 29 at 18:18
show 15 more comments
vote up 0 vote down
{- Haskell implementation of Artem's algorithm -}

data Tree = Branch [Tree]
    deriving Show

{- first int is the min cover; second int is the min cover that includes the root -}
minVC :: Tree -> (Int, Int)
minVC (Branch subtrees) = let
    costs = map minVC subtrees
    minWithRoot = 1 + sum (map fst costs) in
    (min minWithRoot (sum (map snd costs)), minWithRoot)
link|flag
vote up 1 vote down

T(V,E) is a tree, which implies that for any leaf, any minimal vertex cover has to include either the leaf or the vertex adjacent to the leaf. This gives us the following algorithm to finding S, the vertex cover:

  1. Find all leaves of the tree (BFS or DFS), O(|V|) in a tree.
  2. If (u,v) is an edge such that v is a leaf, add u to the vertex cover, and prune (u,v). This will leave you with a forest T_1(V_1,E_1),...,T_n(U_n,V_n).
  3. Now, if V_i={v}, meaning |V_i|=1, then that tree can be dropped since all edges incident on v are covered. This means that we have a termination condition for a recursion, where we have either one or no vertices, and we can compute *S_i* as the cover for each *T_i*, and define S as all the vertices from step 2 union the cover of each *T_i*.

Now, all that remains is to verify that if the original tree has only one vertex, we return 1 and never start the recursion, and the minimal vertex cover can be computed.

Edit:

Actually, after thinking about it for a bit, it can be accomplished with a simple DFS variant.

link|flag

Your Answer

Get an OpenID
or

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