Exemplo n.º 1
0
        public IBinarySearchTree AvlLeftRightRotate(IBinarySearchTree tree)
        {
            var parent = tree.Parent;

            tree.AvlLeftRotate();
            return(parent.AvlRightRotate());
        }