Guest User

Untitled

a guest
Feb 23rd, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. private Node RightRotate(Node grandParentNode) {
  2. Node temp = grandParentNode.Left;
  3. grandParentNode.Left = temp.Right;
  4. temp.Right = grandParentNode;
  5. return temp;
  6. }
Add Comment
Please, Sign In to add comment