-
Notifications
You must be signed in to change notification settings - Fork 103
Open
Description
测试代码:
public static void main(String[] args) {
AVLTree<Integer> t = new AVLTree<>();
t.insert(70);
t.insert(40);
t.insert(10);
t.insert(100);
t.insert(120);
t.insert(130);
t.insert(140);
t.insert(150);
t.insert(160);
t.insert(135);
t.insert(170);
t.insert(145);
t.remove(160);
}
可见节点170
这棵子树是不平衡的
Metadata
Metadata
Assignees
Labels
No labels