Altura de un árbol binario completo (o Heap) con N Nodes
Considere un montón binario de tamaño N. Necesitamos encontrar su altura. Ejemplos: Input : N = 6 Output : 2 () / \ () () / \ / () () () Input : N = 9 Output : 3 () / \ () () / \ / \ () () () () / \ () … Continue reading «Altura de un árbol binario completo (o Heap) con N Nodes»