博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Balanced Binary Tree
阅读量:6258 次
发布时间:2019-06-22

本文共 2104 字,大约阅读时间需要 7 分钟。

原题

Given a binary tree, determine if it is height-balanced.

For this problem, a height-balanced binary tree is defined as a binary tree in which the depth of the two subtrees of every node never differ by more than 1.

判断一棵树是否是平衡二叉树,

注意的问题

      1):递归判断左右子树的平衡性(第12行)

      2):左右子树高度相差大于1,而不是等于2,这不是生成平衡树(第10行)

      3):平衡树是不是搜索树?这是一个问题。。。

1  class Solution  2   { 3   public: 4       bool isBalanced(TreeNode* root)  5           { 6               if (root == NULL) 7                   return true; 8                int lh = height(root->left); 9               int rh = height(root->right);10              if(lh - rh > 1 || rh - lh > 1)11                  return false;12              return isBalanced(root->left)&&isBalanced(root->right);13          }14  //求节点高度15      int height(TreeNode* &pos)16      {17          if(pos == NULL)18              return -1;19        //返回节点高度20          return max(height(pos->left),height(pos->right)) + 1; 21      }22  };
1 class Solution  2  { 3  public: 4      bool isBalanced(TreeNode* root)  5      { 6          if (root == NULL) 7              return true; 8          bool IsSearch = true; 9          int lh = height(root->left,IsSearch);10          int rh = height(root->right,IsSearch);11          if(lh - rh == 2 || rh - lh == 2 || !IsSearch)12              return false;13          return true;14      }15      //求节点高度16      int height(TreeNode* &pos,bool &charge)17      {18          if(pos == NULL)19              return -1;20          if (pos->right != NULL)21          {22              if(pos->val >= pos->right->val)23              {24                  charge = false;25                  return 0;26              }27          }28          else if(pos->left != NULL)29          {30              if(pos->val <= pos->left->val)31              {32                  charge = false;33                  return 0;34              }35          }36          if(charge)37              return max(height(pos->left,charge),height(pos->right,charge)) + 1; 38          else39              return 0;40      }41  };
错误代码

 

转载于:https://www.cnblogs.com/kbe317/p/4503460.html

你可能感兴趣的文章
网络工程师笔试题总结
查看>>
飞舞的蝴蝶
查看>>
Async Performance: Understanding the Costs of Async and Await
查看>>
POJ2771_Guardian of Decency(二分图/最大独立集=N-最大匹配)
查看>>
Cocos2d-x之MenuItem
查看>>
远程共享文件夹
查看>>
[转] C/C++中printf和C++中cout的输出格式
查看>>
swift 如何实现点击view后显示灰色背景
查看>>
【Android】3.9 覆盖物功能
查看>>
MySQL也有潜规则 – Select 语句不加 Order By 如何排序?
查看>>
搭建SolrCloud的详细步骤
查看>>
svn的安装与使用
查看>>
基于Linux下Iptables限制BT下载的研究
查看>>
Android对话框-中篇-之建立自己的对话框
查看>>
华为交换机VRP用户界面配置及Telnet登录实验
查看>>
作为一个程序员我最大的遗憾
查看>>
《SolidWorks 2012中文版从入门到精通》一6.5 综合实例——斜齿圆柱齿轮
查看>>
storm集群的监控
查看>>
RHCE 6.0学习笔记-2 RHEL 6 使用光盘配置本地YUM源
查看>>
Mongodb定期备份
查看>>