//翻转一棵二叉树。
//
// 示例:
//
// 输入:
//
// 4
// / \
// 2 7
// / \ / \
//1 3 6 9
//
// 输出:
//
// 4
// / \
// 7 2
// / \ / \
//9 6 3 1
//
// 备注:
//这个问题是受到 Max Howell 的 原问题 启发的 :
//
// 谷歌:我们90%的工程师使用您编写的软件(Homebrew),但是您却无法在面试时在白板上写出翻转二叉树这道题,这太糟糕了。
// Related Topics 树
// 👍 763 👎 0
/*
* 226 翻转二叉树
* 2021-02-23 10:10:03
* @author oxygenbytes
*/
#include "leetcode.h"
//leetcode submit region begin(Prohibit modification and deletion)
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode() : val(0), left(nullptr), right(nullptr) {}
* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
* TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
* };
*/
class Solution {
public:
TreeNode* invertTree(TreeNode* root) {
if(!root) return nullptr;
auto temp = root->left;
root->left = root->right;
root->right = temp;
invertTree(root->left);
invertTree(root->right);
return root;
}
};
//leetcode submit region end(Prohibit modification and deletion)