Add Go codes to docs, including
the chapter of stack and queue, the chapter of tree.
This commit is contained in:
@@ -5,6 +5,7 @@
|
||||
package chapter_tree
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"testing"
|
||||
|
||||
. "github.com/krahets/hello-algo/pkg"
|
||||
@@ -14,10 +15,10 @@ func TestLevelOrder(t *testing.T) {
|
||||
/* 初始化二叉树 */
|
||||
// 这里借助了一个从数组直接生成二叉树的函数
|
||||
root := ArrayToTree([]int{1, 2, 3, 4, 5, 6, 7})
|
||||
t.Log("初始化二叉树: ")
|
||||
fmt.Println("初始化二叉树: ")
|
||||
PrintTree(root)
|
||||
|
||||
// 层序遍历
|
||||
nums := levelOrder(root)
|
||||
t.Log("层序遍历的结点打印序列 =", nums)
|
||||
fmt.Println("层序遍历的结点打印序列 =", nums)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user