Advertisement
s00rk

pNodoArbol

Dec 12th, 2011
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.10 KB | None | 0 0
  1. package Arboles;
  2.  
  3. public class pNodoArbol
  4. {
  5.     int X;
  6.     pNodoArbol LigaIzq;
  7.     pNodoArbol LigaDer;
  8. }
  9.  
  10.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement