public class Main {

    /*
     * A sample BST.
     *
     * Recommendation: First draw the tree by hand, then
     * run the program.
     */
    public static void main(String[] args) {
        BST<Integer> t = new BST<Integer>(10);
        t.insert(5);
        t.insert(7);
        t.insert(12);
        t.insert(15);
        t.insert(18);
        t.insert(13);
        t.printInorder();
    }

}