首页 > 代码库 > 二叉树的深度
二叉树的深度
多的不解释了,这里有两种解法。
第一种:一般的解法
1 void Deep(BinaryTreeNode* root , int& Maxdeep , int count) 2 { 3 if (root->m_pLeft || root->m_pRight) 4 { 5 count++; 6 if (root->m_pLeft) 7 { 8 Deep(root->m_pLeft , Maxdeep,count); 9 } 10 if (root->m_pRight) 11 { 12 Deep(root->m_pRight , Maxdeep,count); 13 } 14 15 }else //遍历到叶节点 16 { 17 count++; 18 if (count > Maxdeep) 19 { 20 Maxdeep = count ;//保存最大深度 21 } 22 } 23 } 24 int TreeDepth(BinaryTreeNode* root) 25 { 26 int Maxdeep = 0 ; 27 int count = 0 ; 28 Deep(root, Maxdeep, count); 29 return Maxdeep ; 30 }
第二种:大神的解法,代码简洁高效
1 int TreeDepth(BinaryTreeNode* root) 2 { 3 if (root == NULL) 4 { 5 return 0 ; 6 } 7 int left = TreeDepth(root->m_pLeft); 8 int right = TreeDepth(root->m_pRight); 9 return (left > right) ? (left+1) : (right + 1) ; 10 }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。