标签:style blog class code c java
多的不解释了,这里有两种解法。
第一种:一般的解法
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 }
标签:style blog class code c java
原文地址:http://www.cnblogs.com/csxcode/p/3735419.html