Guest User

Untitled

a guest
Oct 20th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. void rightRotation(AVLNode a){
  2. AVLNode b = a.lChild;
  3. if ( b.parent != null )
  4. replaceChild(a.parent, a, b);
  5. else{
  6. root = b;
  7. b.parent = null;
  8. }
Add Comment
Please, Sign In to add comment