You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in rotateLeftRight, while leftRightNode has left child, it will be lost.
also as well rotateRightLeft.
the following code is my correction.
rotateLeftRight(rootNode){// Detach left node from rootNode since it is going to be replaced.constleftNode=rootNode.left;rootNode.setLeft(null);// Detach right node from leftNode.constleftRightNode=leftNode.right;leftNode.setRight(null);if(leftRightNode.left){leftNode.setRight(leftRightNode.left);leftRightNode.setLeft(null);}// Attach leftRightNode to the rootNode.rootNode.setLeft(leftRightNode);// Attach leftNode as left node for leftRight node.leftRightNode.setLeft(leftNode);// Do left-left rotation.this.rotateLeftLeft(rootNode);}
rotateRightLeft(rootNode){// Detach right node from rootNode since it is going to be replaced.constrightNode=rootNode.right;rootNode.setRight(null);// Detach left node from rightNode.constrightLeftNode=rightNode.left;rightNode.setLeft(null);if(rightLeftNode.right){rightNode.setLeft(rightLeftNode.right);rightLeftNode.setRight(null);}// Attach rightLeftNode to the rootNode.rootNode.setRight(rightLeftNode);// Attach rightNode as right node for rightLeft node.rightLeftNode.setRight(rightNode);// Do right-right rotation.this.rotateRightRight(rootNode);}
The text was updated successfully, but these errors were encountered:
in rotateLeftRight, while leftRightNode has left child, it will be lost.
also as well rotateRightLeft.
the following code is my correction.
The text was updated successfully, but these errors were encountered: