Here is a problem from Algorithms book by Vazirani
The input to this problem is a tree T with integer weights on the edges. The weights may be negative, zero, or positive. Give a linear time algorithm to nd the shortest simple path in T. The length of a path is the sum of the weights of the edges in the path. A path is simple if no vertex is repeated. Note that the endpoints of the path are unconstrained.
HINT: This is very similar to the problem of nding the largest independent set in a tree.
How can I solve this problem in linear time?
Here is mine algorithm but I'm wonder if it is linear time but it is nothing differ than depth-first:
- Traverse tree (depth-first)
- Keep the indexes (nodes)
- add the values
- do (1) till the end of tree
- compare the sum and print the path and sum
this problem is similar this topic but there is no certain answer.