Update avl_tree

This commit is contained in:
Yudong Jin
2023-02-03 18:58:01 +08:00
parent 70dead5cd0
commit b39b84acba
5 changed files with 5 additions and 5 deletions

View File

@ -6,7 +6,7 @@ package chapter_tree
import . "github.com/krahets/hello-algo/pkg"
/* AVL Tree*/
/* AVL */
type avlTree struct {
// 根节点
root *TreeNode