题目 :
Construct an AVL tree by inserting 8,9,10,2,1,5,3,6,4,7,11,and 12
successively. You should note the balance factor of each node and show
all necessary rotation. 【95 中央资管(丙)】
我写这题写到平衡时有多个孤立点存在
如图
https://i.imgur.com/9YQEBMi.png
我听 洪毅上课 他只说一个孤立点的情形 就是照BST插入
那多个孤立点的时候
是要照 "小到大" 依序 BST 插入 还是照 "题目顺序" BST插入?
谢谢~~