每日一题 --- 二叉树的遍历[力扣][Go]

简介: 每日一题 --- 二叉树的遍历[力扣][Go]

代码:

数的结构

type TreeNode struct {
  Val int
  Left *TreeNode
  Right *TreeNode
}

先序遍历

// 二叉树的先序遍历
func preorderTraversal(root *TreeNode) []int {
  var ans []int
  var dfs func(*TreeNode)
  dfs = func(t *TreeNode) {
    if t == nil {
      return
    }
    ans = append(ans, t.Val)
    dfs(t.Left)
    dfs(t.Right)
  }
  dfs(root)
  return ans
}

中序遍历

// 二叉树的中序遍历
func inorderTraversal(root *TreeNode) []int {
  var ans []int
  var dfs func(*TreeNode)
  dfs = func(t *TreeNode) {
    if t == nil {
      return
    }
    dfs(t.Left)
    ans = append(ans, t.Val)
    dfs(t.Right)
  }
  dfs(root)
  return ans
}

后续遍历:

// 二叉树的后序遍历
func postorderTraversal(root *TreeNode) []int {
  var ans []int
  var dfs func(*TreeNode)
  dfs = func(t *TreeNode) {
    if t == nil {
      return
    }
    dfs(t.Left)
    dfs(t.Right)
    ans = append(ans, t.Val)
  }
  dfs(root)
  return ans
}

分别对应力扣题库

94. 二叉树的中序遍历

144. 二叉树的前序遍历

145. 二叉树的后序遍历


相关文章
|
22天前
|
Go
go语言中遍历映射(map)
go语言中遍历映射(map)
38 8
|
22天前
|
存储 Go 索引
go语言中遍历字符串
go语言中遍历字符串
35 5
|
14天前
|
Go
go语言for遍历映射(map)
go语言for遍历映射(map)
28 12
|
13天前
|
Go 索引
go语言使用索引遍历
go语言使用索引遍历
23 9
|
14天前
|
Go
go语言for 遍历字符串
go语言for 遍历字符串
25 8
|
15天前
|
存储 Go 索引
go语言使用for循环遍历
go语言使用for循环遍历
28 7
|
21天前
|
Go
go语言中遍历映射同时遍历键和值
go语言中遍历映射同时遍历键和值
26 7
|
18天前
|
Go 索引
go语言遍历字符串
go语言遍历字符串
21 3
|
18天前
|
存储 Go
go语言 遍历映射(map)
go语言 遍历映射(map)
29 2
|
19天前
|
测试技术 Go 索引
go语言使用 range 关键字遍历
go语言使用 range 关键字遍历
17 3