/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class Solution {
public:
TreeNode* invertTree(TreeNode* root) {
TreeNode *temp;
if(root){
temp = root->right;
root->right = root->left;
root->left = temp;
invertTree(root->left);
invertTree(root->right);
}
return root;
}
};这题和遍历类似,遍历的时候先把左右子树交换,就得出反转的二叉树。
本文介绍了一种翻转二叉树的算法实现,通过递归方式交换每个节点的左右子树来完成整个二叉树的翻转。该算法简单高效,易于理解和实现。
2117

被折叠的 条评论
为什么被折叠?



