fix binary_search_tree code

This commit is contained in:
krahets
2023-08-31 02:31:31 +08:00
parent f7ab4797bf
commit 628d8a516b
14 changed files with 195 additions and 227 deletions

View File

@@ -9,7 +9,7 @@ const { printTree } = require('../modules/PrintUtil');
/* AVL 树*/
class AVLTree {
/*构造方法*/
/* 构造方法 */
constructor() {
this.root = null; //根节点
}