Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.22 KB | None | 0 0
  1.     public class Node {
  2.         private int rank;
  3.         private int x;
  4.         private Node left;
  5.         private Node right;
  6.        
  7.         public Node(int x, int rank) {
  8.             this.x = x;
  9.             this.rank = rank;
  10.             this.left = null;
  11.             this.right = null;
  12.         }
  13.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement