Advertisement
Guest User

Untitled

a guest
Dec 14th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. public class BinaryNode {
  2.  
  3. int value;
  4. BinaryNode left;
  5. BinaryNode right;
  6.  
  7. public BinaryNode (int value) {
  8. this.value = value;
  9. left = null;
  10. right = null;
  11. }
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement