Advertisement
Guest User

Untitled

a guest
Apr 16th, 2014
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. else if (this.LeftChild != null && this.RightChild == null)
  2. {
  3. if (IsLeftChild)
  4. Parent.LeftChild = this.RightChild.Parent;
  5. else
  6. Parent.RightChild = this.RightChild.Parent;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement