tinyevil

Untitled

Nov 29th, 2017
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. :| Tree
  2. Leaf(Natural)
  3. Node(left:Tree, right:Tree)
  4.  
  5. :| BalancedTree : Tree
  6. Leaf(_)
  7. Node(BalancedTree left, BalancedTree right) | height left == height right
Add Comment
Please, Sign In to add comment