Advertisement
MaTias0258

Untitled

Nov 9th, 2022
694
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.26 KB | None | 0 0
  1.  
  2. public class NodoArbolAVL {
  3.  
  4.     int dato, fe;
  5.     NodoArbolAVL hijoIzquierdo, hijoDerecho;
  6.  
  7.     public NodoArbolAVL(int d) {
  8.         this.dato = d;
  9.         this.fe = 0;
  10.         this.hijoIzquierdo = null;
  11.         this.hijoDerecho = null;
  12.     }
  13.  
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement