Arbol a clonar: 1 2 3 4 5 6 7 ---------------------------------------------------------------------------- Recorrido en preorder: [ 1 2 4 5 3 6 7 ] --> Lista de Es --> PositionList Altura del árbol H = 2 --------------------------------------------------------------------------- Arbol clonado: 1 [ 1 2 4 5 3 6 7], H = 2 \\\\ 1.) H != 0 --> Cree raíz, agrega hi y luego agrega hd [3 6 7 ] \\\\\ 1.1) 2 [ 2 4 5 3 6 7 ], H = 1 \\\\ 2.) H != 0--> cree raíz, agregar hi y luego hd 4 5 [ 4 5 3 6 7 ], H = 0 \\\\ 3.) H == 0 --> Cree raíz, y retorno. [ 5 3 6 7 ], H = 0 \\\\\ 3.1) H == 0 --> Cree raíz, y retorno