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
| from .nodo_avl import Nodo, NodoAVL | |
| from .caso_criminal import CasoCriminal | |
| class ArbolAVL: | |
| def __init__(self): | |
| self.raiz = None | |
| #getters | |
| def obtener_altura(self, nodo): | |
| if not nodo: |