Exemplo n.º 1
0
        static void Main(string[] args)
        {
            Tree b = new Tree();

            b.Insert(5);
            b.Insert(7);
            b.Insert(7);
            b.Insert(1);
            b.Insert(12);
            b.Insert(32);
            b.Insert(15);
            b.Insert(22);
            b.Insert(2);
            b.Insert(6);
            b.Insert(24);
            b.Insert(17);
            b.Insert(14);

            //b.FindMax();
            b.LesMax();
            //b.DisplayByOrder();
            Console.ReadKey();
        }