fix(tree): amend tree in golang

This commit is contained in:
reanon
2022-11-29 00:48:01 +08:00
parent d0302ee490
commit 67409cdb12
3 changed files with 5 additions and 2 deletions
+2 -1
View File
@@ -5,8 +5,9 @@
package chapter_tree package chapter_tree
import ( import (
. "github.com/krahets/hello-algo/pkg"
"sort" "sort"
. "github.com/krahets/hello-algo/pkg"
) )
type BinarySearchTree struct { type BinarySearchTree struct {
+1
View File
@@ -6,6 +6,7 @@ package chapter_tree
import ( import (
"container/list" "container/list"
. "github.com/krahets/hello-algo/pkg" . "github.com/krahets/hello-algo/pkg"
) )
+2 -1
View File
@@ -5,8 +5,9 @@
package chapter_tree package chapter_tree
import ( import (
. "github.com/krahets/hello-algo/pkg"
"testing" "testing"
. "github.com/krahets/hello-algo/pkg"
) )
func TestBinaryTree(t *testing.T) { func TestBinaryTree(t *testing.T) {