Advertisement
Guest User

Untitled

a guest
Oct 25th, 2014
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. Node node = new Node();
  2. node.getHeight();
  3.  
  4. public int getHeight(){
  5. // calculate height
  6. return height;
  7. }
  8.  
  9. node.getData();
  10. node.getRightChild();
  11.  
  12. cannot find symbol
  13. symbol: method getHeight()
  14. location: variable node of type Node
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement