- void ImprimeNivel (arbol *tmp, int nivel){ 
- arbol *tmp1; 
- int res,re; 
-   
- if (nivel == 1) 
-     { 
-         if (tmp!=NULL) 
-             printf("Arbol %i", tmp->dato); 
-         else 
-         printf("Vacio"); 
-     } 
-      
-     if(nivel==2) 
-     { 
-         if (tmp->i!=NULL) 
-         { 
-             re=(tmp->i)->dato;       
-             printf("Arbol I [%i]n", re);    
-         }    
-         else 
-             printf("No tiene Izquierdon");  
-         if (tmp->d!=NULL){ 
-             res=(tmp->d)->dato;  
-             printf("Arbol D [%i]", res); 
-         } 
-         else 
-             printf("No tiene Derechon");    
-     } 
- } 
-