leetcode:226. 翻转二叉树

226. 翻转二叉树

来源:力扣(LeetCode)

链接: https://leetcode.cn/problems/invert-binary-tree/

给你一棵二叉树的根节点 root ,翻转这棵二叉树,并返回其根节点。

示例 1:
leetcode:226. 翻转二叉树_第1张图片

输入:root = [4,2,7,1,3,6,9]
输出:[4,7,2,9,6,3,1]

示例 2:

leetcode:226. 翻转二叉树_第2张图片

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

示例 3:

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

提示:

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

解法

  • 递归:从根节点开

你可能感兴趣的:(编程练习-Leetcode,leetcode,算法,翻转二叉树,递归,bfs)