[LeetCode练习]226. 翻转二叉树
程序员文章站
2022-03-03 10:12:54
...
翻转一棵二叉树。
示例:
输入:
4
/ \
2 7
/ \ / \
1 3 6 9
输出:
4
/ \
7 2
/ \ / \
9 6 3 1
思路:1、递归思想,如果存在左右子树,那么就翻转
代码:
public TreeNode invertTree(TreeNode root) { if (root == null) { return null; } if (root.right != null || root.left != null) { TreeNode temp = root.left; root.left = root.right; root.right = temp; if (root.right != null) { invertTree(root.right); } if (root.left != null) { invertTree(root.left); } } return root; }
上一篇: vue跳转的三种方法
下一篇: [leetcode]226. 翻转二叉树