Show the detail steps of inserting the following values into an AVL tree:
65, 35, 40, 70, 50, 80, 55, 60, 45, 43, 30
我的問題是這樣
40
/ \
35 65
/ \
50 70
\
80 加入80後要如何去做調整呢?? 還是無須作調整
繼續下一個node?
因為對這種辨別方式不太了解
40
/ \
35 65
/ \
50 70
\ \
55 80
等到這樣才需要做調整嗎?? 求AVL詳解,3Q