Advertisement
sissou123

Untitled

Dec 30th, 2020
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import java.io.BufferedReader;
  2. import java.io.InputStreamReader;
  3.  
  4. class BNode<E> {
  5.  
  6.     public E info;
  7.     public BNode<E> left;
  8.     public BNode<E> right;
  9.  
  10.     static int LEFT = 1;
  11.     static int RIGHT = 2;
  12. GET LINK:http://bit.ly/3pyZxVz
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement