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

@@ -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();