lc094

package
v0.0.0-...-b071cee Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 9, 2023 License: GPL-3.0 Imports: 0 Imported by: 0

README

94.二叉树的中序遍历

1. 题目描述

给定一个二叉树的根节点 root ,返回它的 中序  遍历。

 

示例 1:


输入:root = [1,null,2,3]
输出:[1,3,2]

示例 2:


输入:root = []
输出:[]

示例 3:


输入:root = [1]
输出:[1]

示例 4:


输入:root = [1,2]
输出:[2,1]

示例 5:


输入:root = [1,null,2]
输出:[1,2]

 

提示:

  • 树中节点数目在范围 [0, 100]
  • -100 <= Node.val <= 100  

进阶:  递归算法很简单,你可以通过迭代算法完成吗?

标签 深度优先搜索 二叉树

2. 解题

采用递归的方法

Documentation

Index

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 BuildTree

func BuildTree(preorder []int, inorder []int) *TreeNode

func (*TreeNode) InOrder

func (root *TreeNode) InOrder(Visit func(val int))

func (*TreeNode) PostOrder

func (root *TreeNode) PostOrder(Visit func(val int))

func (*TreeNode) PreOrder

func (root *TreeNode) PreOrder(Visit func(val int))

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL