Guest User

Untitled

a guest
Apr 20th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. RED = True
  2. BLACK = False
  3.  
  4.  
  5. class RBTree(BST):
  6. def rotate_left(self, node):
  7. x = node.right
  8. node.right = x.left
  9. x.left = node
  10.  
  11. x.color = node.color
  12. node.color = RED
  13. return x
Add Comment
Please, Sign In to add comment