首页 > 其他 > 详细

[leetcode] Invert binary tree.

时间:2016-03-08 10:34:44      阅读:210      评论:0      收藏:0      [点我收藏+]

Invert a binary tree.

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

  1. 错:把if用成while。while和递归可以互换

[leetcode] Invert binary tree.

原文:http://www.cnblogs.com/yuchenkit/p/5253032.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!