Created
February 24, 2022 21:02
-
-
Save feraranas/a5ceac8d360eb49b7d3c3afbcc63e957 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| void postOrden(Nodo<T> *&nodo) | |
| { | |
| if (nodo->izquierda != NULL) | |
| { | |
| postOrden(nodo->izquierda); | |
| } | |
| if (nodo->derecha != NULL) | |
| { | |
| postOrden(nodo->derecha); | |
| } | |
| cout << nodo->dato << " : "; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment