2022-11-26 06:36:43 +00:00
|
|
|
// File: binary_tree_dfs_test.go
|
|
|
|
// Created Time: 2022-11-26
|
|
|
|
// Author: Reanon (793584285@qq.com)
|
|
|
|
|
|
|
|
package chapter_tree
|
|
|
|
|
|
|
|
import (
|
2022-12-03 12:25:24 +00:00
|
|
|
"fmt"
|
2022-11-26 06:36:43 +00:00
|
|
|
"testing"
|
2022-11-26 20:19:16 +00:00
|
|
|
|
|
|
|
. "github.com/krahets/hello-algo/pkg"
|
2022-11-26 06:36:43 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestPreInPostOrderTraversal(t *testing.T) {
|
|
|
|
/* 初始化二叉树 */
|
|
|
|
// 这里借助了一个从数组直接生成二叉树的函数
|
|
|
|
root := ArrayToTree([]int{1, 2, 3, 4, 5, 6, 7})
|
2022-12-03 12:25:24 +00:00
|
|
|
fmt.Println("初始化二叉树: ")
|
2022-11-26 06:36:43 +00:00
|
|
|
PrintTree(root)
|
|
|
|
|
|
|
|
// 前序遍历
|
2022-12-03 12:25:24 +00:00
|
|
|
nums = nil
|
|
|
|
preOrder(root)
|
|
|
|
fmt.Println("前序遍历的结点打印序列 =", nums)
|
2022-11-26 06:36:43 +00:00
|
|
|
|
|
|
|
// 中序遍历
|
2022-12-03 12:25:24 +00:00
|
|
|
nums = nil
|
|
|
|
inOrder(root)
|
|
|
|
fmt.Println("中序遍历的结点打印序列 =", nums)
|
2022-11-26 06:36:43 +00:00
|
|
|
|
|
|
|
// 后序遍历
|
2022-12-03 12:25:24 +00:00
|
|
|
nums = nil
|
|
|
|
postOrder(root)
|
|
|
|
fmt.Println("后序遍历的结点打印序列 =", nums)
|
2022-11-26 06:36:43 +00:00
|
|
|
}
|