Files
Data-Structure/BinaryTree/BalanceTree/AVLTree/README.MD
2025-08-19 18:01:45 +08:00

4 lines
283 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 旋转的本质不能改变BST的属性
左旋,是指把本节点移动到本节点右节点的左节点上; 右旋,是指把本节点移动到本节点左节点的右节点上
LR的情况先把LR的左节点左旋形成LL然后再按照LL的方式处理
RL同理