Keeping avl tree balanced without rotations
问题 B Tree is self balancing tree like AVL tree. HERE we can see how left and right rotations are used to keep AVL tree balanced. And HERE is a link which explains insertion in B tree. This insertion technique does not involve any rotations, if I am not wrong, to keep tree balanced. And therefore it looks simpler. Question: Is there any similar (or any other technique without using rotations) to keep avl tree balanced ? 回答1: The answer is... yes and no. B-trees don't need to perform rotations