翻转二叉树

 
class Solution {
public:
    TreeNode* mirrorTree(TreeNode* root) {
     if(root==nullptr)
     return nullptr;
     mirrorTree(root->left);
     mirrorTree(root->right);
     swap(root->left,root->right);
     return root;
    }
};

你可能感兴趣的:(算法,leetcode,数据结构)