Datasets:

ArXiv:
License:
File size: 250 Bytes
c574d3a
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
package torea;

class Tree{
    public static class BTree<E>{
        public E payload;
        public BTree<E> rightChild;
        public BTree<E> leftChild;

        BTree(E something){
            payload = something;
        }
    }
}