/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package bstorderedmap;

/**
 *
 * @author kvaradar
 */
public class Main {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        // TODO code application logic here

        BSTOrderedMap<Integer,Integer> bmap = new BSTOrderedMap<Integer,Integer>();
        bmap.put(70,1);
        bmap.put(40,2);
        bmap.put(50,3);
        bmap.put(90,4);
        bmap.put(100,5);
        bmap.printTree();
        System.out.println(bmap);
    }

}
