Realizamos uma pesquisa profunda em ordem de pós e agregamos resultados no caminho, ou seja, resolvemos o problema recursivamente.
Para cada nó com filhos (na árvore de pesquisa), existem dois casos:u 1 , ... , u kvu1,…,uk
- O caminho mais longo em está em uma das subárvores .T u 1 , … , T u kTvTu1,…,Tuk
- O caminho mais longo em contém . vTvv
No segundo caso, temos que combinar os um ou dois caminhos mais longos de em uma das subárvores; estes são certamente aqueles das folhas mais profundas. O comprimento do caminho é então se , ou se , com o conjunto múltiplo de alturas das subárvores¹.H ( k ) + H ( k - 1 ) + 2 k > 1 H ( k ) + 1 k = 1 H = { h ( T u i ) ∣ i = 1 , … , k }vH(k)+H(k−1)+2k>1H(k)+1k=1H={h(Tui)∣i=1,…,k}
No pseudo-código, o algoritmo se parece com isso:
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)
}
}
- k AA(k) é o menor valor de em (estatística da ordem).kA