I want to implement an AVL Tree in Java, here is what I have so far:
public class AVLNode { private int size; /** The size of the tree. */ private int heig