예제 #1
0
 public void setLeft(AVLNode <T> leftChild)
 {
     left = leftChild;
 }
예제 #2
0
 public void setRight(AVLNode <T> rightChild)
 {
     right = rightChild;
 }
예제 #3
0
 public void setParent(AVLNode <T> parentAVLNode)
 {
     parent = parentAVLNode;
 }