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

[leetcode] Invert binary tree.

时间:2016-03-08 10:35:17      阅读:107      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!