LeetCode 226. Invert Binary Tree
226. Invert Binary Tree(翻转二叉树)
title: LeetCode 226. Invert Binary Tree
date: 2022-04-09 10:36:00
tags:
categories: LeetCode
LeetCode 226. Invert Binary Tree (翻转二叉树)
题目
链接
https://leetcode-cn.com/problems/invert-binary-tree
问题描述
给你一棵二叉树的根节点 root ,翻转这棵二叉树,并返回其根节点。
示例
输入:root = [4,2,7,1,3,6,9]
输出:[4,7,2,9,6,3,1]
提示
输入:root = [4,2,7,1,3,6,9]
输出:[4,7,2,9,6,3,1]
思路
简单题目,对于每一个结点,都交换左右子节点,然后交换完整棵树就结束了。设置一个临时结点,然后递归即可。
复杂度分析
时间复杂度 O(n)
空间复杂度 O(n)
代码
Java
public TreeNode invertTree(TreeNode root) {
if (root == null) {
return null;
}
TreeNode temp = root.left;
root.left = root.right;
root.right = temp;
invertTree(root.left);
invertTree(root.right);
return root;
}