首页 > 其他 > 详细

平衡二叉树

时间:2017-05-14 23:18:46      阅读:261      评论:0      收藏:0      [点我收藏+]

剑指上用了指针传递,这里用的引用传递

class Solution {
public:
    bool IsBalanced_Solution(TreeNode* pRoot) { 
        int depth = 0;
        return IsBalanced(pRoot,depth);
    }
    bool IsBalanced(TreeNode* pRoot,int& depth){
        if(pRoot == NULL){
            depth = 0;
            return true;
        }
        int left = 0;
        int right = 0;
        if(IsBalanced(pRoot->left,left) && IsBalanced(pRoot->right,right)){
            int diff = left - right;
            if(diff <= 1 && diff >= -1){
                depth = 1 + (left > right ? left : right);
                return true;
            }
        }
        return false;
    }
};

 

平衡二叉树

原文:http://www.cnblogs.com/ymjyqsx/p/6854299.html

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