binary_search_tree_test
binary_search_tree_test.go 源码
package tree
import "testing"
func TestBinarySearchTree_Add(t *testing.T) {
bst := New()
bst.Add(7)
bst.Add(9)
bst.Add(13)
bst.Add(5)
bst.Add(11)
bst.Add(1)
bst.Add(15)
bst.PrintData()
}
你可能感兴趣的文章
0
赞
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
8、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦