博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
剑指offer——二叉树的深度与平衡二叉树的判断
阅读量:5121 次
发布时间:2019-06-13

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

通过后续遍历,可以减少重复访问

1 #include 
2 #include
3 using namespace std; 4 5 struct BinaryTreeNode 6 { 7 int m_data; 8 BinaryTreeNode* m_left; 9 BinaryTreeNode* m_right;10 };11 12 int TreeDepth(BinaryTreeNode* pRoot)13 {14 if (pRoot==NULL)15 {16 return 0;17 }18 int nleft=TreeDepth(pRoot->m_left);19 int nright=TreeDepth(pRoot->m_right);20 return (nleft>nright)?(nleft+1):(nright+1);21 }22 23 bool IsBalance(BinaryTreeNode* pRoot,int *pDepth)24 {25 if (pRoot==NULL)26 {27 *pDepth=0;28 return true;29 }30 int left,right;31 if(IsBalance(pRoot->m_left,&left)&&IsBalance(pRoot->m_right),&right)32 {33 int diff=left-right;34 if (diff<=1&&diff>=-1)35 {36 *pDepth=1+(left>right)?left:right;37 return true;38 }39 }40 return false;41 }

 

转载于:https://www.cnblogs.com/dgy5554/p/3973382.html

你可能感兴趣的文章
关于PHP会话:session和cookie
查看>>
STM32F10x_RTC秒中断
查看>>
display:none和visiblity:hidden区别
查看>>
C#double转化成字符串 保留小数位数, 不以科学计数法的形式出现。
查看>>
SpringMVC学习总结(三)——Controller接口详解(1)
查看>>
牛的障碍Cow Steeplechase
查看>>
Zookeeper选举算法原理
查看>>
3月29日AM
查看>>
利用IP地址查询接口来查询IP归属地
查看>>
HTML元素定义 ID,Class,Style的优先级
查看>>
构造者模式
查看>>
http和https的区别
查看>>
Hbuild在线云ios打包失败,提示BuildConfigure Failed 31013 App Store 图标 未找到 解决方法...
查看>>
找到树中指定id的所有父节点
查看>>
今天新开通了博客
查看>>
AS3优化性能笔记二
查看>>
Java高阶回调,回调函数的另一种玩法
查看>>
ElasticSearch(站内搜索)
查看>>
4----COM:a Generative Model for group recommendation(组推荐的一种生成模型)
查看>>
UVA 11137 - Ingenuous Cubrency
查看>>