เราทำการค้นหาในเชิงลึกครั้งแรกตามลำดับการโพสต์และผลลัพธ์โดยรวมนั่นคือเราแก้ปัญหาซ้ำ ๆ
สำหรับทุกโหนดมี children u 1 , … , u k (ในแผนผังการค้นหา) มีสองกรณี:vu1,…,uk
- เส้นทางที่ยาวที่สุดในโกหกในหนึ่งใน subtrees T U 1 , ... , T U kTvTu1,…,Tuk
- เส้นทางที่ยาวที่สุดในมีโวลต์Tvv
vH(k)+H(k−1)+2k>1H(k)+1k=1H={h(Tui)∣i=1,…,k}
ในโค้ดหลอกอัลกอริทึมจะมีลักษณะดังนี้:
procedure longestPathLength(T : Tree) = helper(T)[2]
/* Recursive helper function that returns (h,p)
* where h is the height of T and p the length
* of the longest path of T (its diameter) */
procedure helper(T : Tree) : (int, int) = {
if ( T.children.isEmpty ) {
return (0,0)
}
else {
// Calculate heights and longest path lengths of children
recursive = T.children.map { c => helper(c) }
heights = recursive.map { p => p[1] }
paths = recursive.map { p => p[2] }
// Find the two largest subtree heights
height1 = heights.max
if (heights.length == 1) {
height2 = -1
} else {
height2 = (heights.remove(height1)).max
}
// Determine length of longest path (see above)
longest = max(paths.max, height1 + height2 + 2)
return (height1 + 1, longest)
}
}
- A(k)kA