码迷,mamicode.com
首页 > 其他好文 > 详细

树——二叉树结点数目、高度和度数的实现

时间:2019-05-26 12:53:41      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:i++   div   图片   获取   ons   node   image   const   turn   

1,二叉树中结点的数目的实现:

技术图片

       1,定义功能:count(node):

              1,在 node 为根结点的二叉树中统计结点数目;

       2,功能函数代码实现:

1    /* 定义数结点数目的功能函数 */
2     int count(BTreeNode<T>* node) const
3     {
4         return (node != NULL) ? (count(node->left) + count(node->right) + 1) : 0 ; 
5    }

  3,成员函数代码实现:

1 int count() const 

2 {

3 return count(root());

4 }
 

 

2,二叉树的高度:

技术图片 

       1,定义功能:height(node):

              1,获取 node 为根结点的二叉树的高度;

  2,功能函数代码实现:

 1     /* 定义以 node 为根结点的二叉树的高度 */
 2     int height(BTreeNode<T>* node) const
 3     {
 4         int ret = 0;
 5 
 6         if( node != NULL )  // 空结点返回 0 ,递归出口
 7         {
 8             int lh = height(node->left);
 9             int rh = height(node->right);
10             ret = ((lh > rh) ? lh : rh) + 1;
11         }
12 
13         return ret;
14     }

  3,成员函数代码实现:

1 int height() const 

2 {

3 return height(root());

4 }
 

 

3,树的度数:

技术图片 

       1,定义功能:degree(node):

              1,获取 node 为根结点的二叉树的度数;

       2,功能函数代码实现:

 1    /* 定义以 node 为根结点的二叉树的度数 */
 2     int degree(BTreeNode<T>* node) const
 3     {
 4         int ret = 0;
 5 
 6         if( node != NULL )
 7         {
 8             // 非常精妙的改写,由下往上改写;
 9             BTreeNode<T>* child[] = { node->left, node->right};
10             ret = (!!node->left + !!node->right);  // 结点数的度
11 
12             for(int i=0; (i<2) && (ret<2); i++)  //保证结点度数达到要求后,直接不求
13             {
14                 int d = degree(child[i]);
15 
16                 if( ret < d )
17                 {
18                     ret = d;
19                 }
20             } 
21         }
22 
23         return ret;
24    }

  3,功能函数代码实现:

1 int degree() const 

2 {

3 return degree(root());

4 }
 

树——二叉树结点数目、高度和度数的实现

标签:i++   div   图片   获取   ons   node   image   const   turn   

原文地址:https://www.cnblogs.com/dishengAndziyu/p/10925512.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!