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

Invert Binary Tree

时间:2017-05-06 11:42:28      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:binary   左右   cpp   null   root   pac   rtt   左右子树   article   

该题比較简单。递归交换每个节点的左右子树就可以。

class Solution {
public:
    TreeNode* invertTree(TreeNode* root) {
        if(root == NULL)
            return NULL;
        TreeNode* tmp = root -> left;
        root -> left = invertTree(root -> right);
        root -> right = invertTree(tmp);

    }
};


Invert Binary Tree

标签:binary   左右   cpp   null   root   pac   rtt   左右子树   article   

原文地址:http://www.cnblogs.com/jhcelue/p/6815934.html

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