平衡二叉树

Posted codingtao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了平衡二叉树相关的知识,希望对你有一定的参考价值。

1、求二叉树的深度  递归

  int BitreeDepth(TreeNode *root){

    if(root == NULL) return 0;

    else if(root->left == NULL && root->right == NULL) return 1;

    int DepthTl = BitreeDepth(root->left);

    int DepthTr = BitreeDepth(root->right);

    return 1+max(DepthTl,DepthTr);

  }

2、求是否为平衡二叉树 递归

  bool isBalanced(TreeNode *root){

    if(root == NULL)  return true;

    if(sub_abs(BitreeDepth(root->left),BitreeDepth(root->right))>1) return flase;

    return isBalanced(root->left)&&isBalanced(root->right);
  }

3、tips 递归的思想:找结束条件 然后return;如在2中求是否为平衡二叉树,我们第二个if,找结束条件是sub_abs()>1,而不是找运行条件sub_abs()<=1;

   暗示,在sub_abs()<=1的情况下,函数没有完成,继续找左子树和右子树,再 return。

  

以上是关于平衡二叉树的主要内容,如果未能解决你的问题,请参考以下文章

什么是平衡二叉树

[数据结构4.8]平衡二叉树

平衡二叉树的介绍

树总结(二)平衡二叉树

平衡二叉树的操作(高手进)

平衡二叉树的问题!