static void Main(string[] args)
        {
            BinarySearchTree bst = new BinarySearchTree();
            bst.Insert(50);
            bst.Insert(33);
            bst.Insert(21);
            bst.Insert(55);
            bst.Insert(9);
            bst.Insert(13);
            bst.Insert(5);
            bst.Insert(57);
            bst.PrintTree();

            bst.Search(5);
            Console.ReadLine();
        }