package com.java.ds.bst; public class BSTDemo { public static void main(String[] args) { // TODO Auto-generated method stub /* BinarySearchTree bst_int = new BinarySearchTree(); bst_int.add(10); bst_int.add(15); bst_int.add(8); bst_int.iterateAsc();*/ BinaryHashMap hashMap = new BinaryHashMap(); hashMap.put("1", "hsss"); hashMap.put("1", "hsss"); System.out.println("size " + hashMap.getSize()); } }