Esempio n. 1
0
        public static void CreateList(Random rnd)
        {
            AVLTree aVL = new AVLTree();

            for (int i = 0; i < CountItems; i++)
            {
                aVL.Inser(rnd.Next(RndMin, RndMax));
            }

            aVL.ConsolePrint();
        }