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

平衡二叉树

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

标签:class   ret   public   blog   turn   code   root   ==   return   

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

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;
    }
};

 

平衡二叉树

标签:class   ret   public   blog   turn   code   root   ==   return   

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

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