Advertisement
Guest User

Untitled

a guest
Dec 11th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.17 KB | None | 0 0
  1. public class Node<T extends Comparable<T>> {
  2.   public T val;
  3.   public Node<T> left;
  4.   public Node<T> right;
  5.  
  6.   public Node() {
  7.   }
  8.  
  9.   public Node(T val) {
  10.   }
  11.  
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement