226. Invert Binary Tree
问题
Given the root of a binary tree, invert the tree, and return its root.
翻转二叉树。
交换当前节点的左右子节点。
分别递归其左右子节点。
当当前节点的两个节点均为null时返回。
1 | /** |
226. Invert Binary Tree
https://xuanhe95.github.io/2022/04/13/226-Invert-Binary-Tree/
问题
Given the root of a binary tree, invert the tree, and return its root.
翻转二叉树。
交换当前节点的左右子节点。
分别递归其左右子节点。
当当前节点的两个节点均为null时返回。
1 | /** |
226. Invert Binary Tree
https://xuanhe95.github.io/2022/04/13/226-Invert-Binary-Tree/