27. 二叉树的镜像
作者:互联网
/**
* struct TreeNode {
* int val;
* struct TreeNode *left;
* struct TreeNode *right;
* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
* };
*/
class Solution {
public:
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
*
* @param pRoot TreeNode类
* @return TreeNode类
*/
TreeNode* Mirror(TreeNode* pRoot) {
// write code here
if(pRoot == nullptr) return nullptr;
auto p = pRoot;
auto rchild = pRoot->right;
auto lchild = pRoot->left;
p->left = Mirror(rchild);
p->right = Mirror(lchild);
return p;
}
};
标签:27,TreeNode,nullptr,pRoot,return,right,二叉树,镜像,left 来源: https://www.cnblogs.com/N3ptuner/p/14588292.html