Fix a figure and latex symbols.

This commit is contained in:
krahets
2023-08-30 15:25:03 +08:00
parent 1b94b77cbb
commit 63aef4ed08
6 changed files with 21 additions and 21 deletions

View File

@@ -80,7 +80,7 @@ class BinarySearchTree {
pre.left = node;
}
/* 删除节点 */
/* 删除节点 */
void remove(int num) {
// 若树为空,直接提前返回
if (_root == null) return;