Skip to content

Instantly share code, notes, and snippets.

@feraranas
Created February 24, 2022 21:02
Show Gist options
  • Save feraranas/a5ceac8d360eb49b7d3c3afbcc63e957 to your computer and use it in GitHub Desktop.
Save feraranas/a5ceac8d360eb49b7d3c3afbcc63e957 to your computer and use it in GitHub Desktop.
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