Ejemplo n.º 1
0
        public void BinaryTreeAVLInsert2()
        {
            AVLTree <int, int> tree = new AVLTree <int, int>();

            this.TestOrderPreservationOnInsertStructs <IBinaryTreeNode <int, int>, int>(Enumerable.Range(1, 100), tree);
        }
        public void BinaryTreeAVLDeleteValidation7b()
        {
            AVLTree <int, int> tree = new AVLTree <int, int>();

            this.TestTree7b(tree);
        }