Advertisement
Guest User

BinaryTree.java

a guest
Mar 26th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. public interface BinaryTree extends Tree{
  2.  
  3. Position left(Position p) throws IllegalArgumentException;
  4. Position right(Position p) throws IllegalArgumentException;
  5. Position sibling(Position p) throws IllegalArgumentException;
  6.  
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement