README ¶ 二叉树的最小深度 easy 给定一个二叉树,找出其最小深度。 最小深度是从根节点到最近叶子节点的最短路径上的节点数量。 说明: 叶子节点是指没有子节点的节点。 示例: 给定二叉树 [3,9,20,null,null,15,7], 3 / \ 9 20 / \ 15 7 返回它的最小深度 2. Expand ▾ Collapse ▴ Documentation ¶ Index ¶ type TreeNode func PreIn2Tree(pre, in []int) *TreeNode Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type TreeNode ¶ type TreeNode struct { Val int Left *TreeNode Right *TreeNode } func PreIn2Tree ¶ func PreIn2Tree(pre, in []int) *TreeNode PreIn2Tree 把 preorder 和 inorder 切片转换成 二叉树 Source Files ¶ View all Source files main.goutil.go Click to show internal directories. Click to hide internal directories.