Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to conceptualize this problem and then write Java code for it. I know there's been some discussion here, but I'm not seeing lots of answerers, so I'd like to reiterate the question by writing out my thoughts and I'm hoping to gain some feedback from you guys. Thanks!

My thoughts: For each leaf node Find the longest path from the root node to it For all paths Find the maximum path length

However, isn't this simply brute force? Are there more elegant solutions to this?

I heard of using Djikstra's algorithm with negative weights, but in some places it says that this only works on specified cases? I've also seen suggestions for the Bellman Ford algorithm, but isn't that used to find the shortest path?

Thanks!!

share|improve this question

1 Answer

I think what you should do is to calculate all shortest paths of a root to a leaf and then take the longest. but this would be a hard problem in generel. fortunately you are using a directed acyclic graph. so this will not take forever. you may wanne take a look at this link

hope that helped =)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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