We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1c998c9 + d7a5d77 commit 53673c9Copy full SHA for 53673c9
2 files changed
README.md
@@ -17,7 +17,7 @@
17
- [线段树]()
18
- [Trie树]()
19
- [并查集]()
20
-- [AVL数据]()
+- [AVL树](https://github.com/coderbruis/AlgorithmsInJava/blob/master/notes/datastructures/AVL%E6%A0%91.md)
21
- [红黑树]()
22
- [哈希表]()
23
notes/datastructures/AVL树.md
@@ -323,7 +323,7 @@ if(balanceFactor > 1 && getBalanceFactor(node.left) < 0) {
323
324
至此,对于所有的情况,都已经分析完了。
325
326
-####9. 删除节点
+### 9. 删除节点
327
328
删除的节点,分为两种:
329
0 commit comments