Created
May 11, 2015 02:12
-
-
Save pedrogk/686b3edfa8d41f09177f to your computer and use it in GitHub Desktop.
SG47. Arbol binario en Pascal 1
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
nodoptr = ^nodo; //el apuntador del nodo apunta a un nodo | |
nodo = record //esta es la definición del nodo | |
algúndato: string; //palabra a guardar | |
izquierda, derecha: nodoptr; | |
end; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment