码迷,mamicode.com
首页 > 其他好文 > 详细

剑指offer 左右翻转二叉树

时间:2018-08-26 00:02:29      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:val   treenode   roo   tree   翻转   剑指offer   mirror   off   ptr   

class Solution {
public:
    void Mirror(TreeNode *pRoot) {
        if(pRoot == nullptr) return;
        cout << pRoot->val << endl;
        auto temp = pRoot->left;
        pRoot->left = pRoot->right;
        pRoot->right = temp;
        Mirror(pRoot->left);
        Mirror(pRoot->right);
    }
};

剑指offer 左右翻转二叉树

标签:val   treenode   roo   tree   翻转   剑指offer   mirror   off   ptr   

原文地址:https://www.cnblogs.com/theodoric008/p/9535810.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!