@ -9,7 +9,7 @@ using NUnit.Framework;
namespace hello_algo.chapter_tree
{
// Tree class
/* AVL 树 */
class AVLTree
public TreeNode? root; // 根节点
@ -6,7 +6,7 @@ package chapter_tree
import . "github.com/krahets/hello-algo/pkg"
/* AVL Tree*/
type avlTree struct {
// 根节点
root *TreeNode
@ -8,7 +8,7 @@ package chapter_tree;
import include.*;
class AVLTree {
TreeNode root; // 根节点
@ -6,7 +6,7 @@
import utils
fileprivate var root: TreeNode? // 根节点
@ -5,7 +5,7 @@
const std = @import("std");
const inc = @import("include");
// 平衡二叉树
// AVL 树
pub fn AVLTree(comptime T: type) type {
return struct {
const Self = @This();