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

二叉树(4)----求二叉树深度

时间:2014-12-14 22:44:49      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:二叉树

1、二叉树定义

typedef struct BTreeNodeElement_t_ {
    void *data;
} BTreeNodeElement_t;

typedef struct BTreeNode_t_ {
    BTreeNodeElement_t *m_pElemt;
    struct BTreeNode_t_    *m_pLeft;
    struct BTreeNode_t_    *m_pRight;
} BTreeNode_t;


2、求二叉树深度


定义:对任意一个子树的根节点来说,它的深度=左右子树深度的最大值+1

(1)递归实现

如果根节点为NULL,则深度为0

如果根节点不为NULL,则深度=左右子树的深度的最大值+1

int  GetBTreeDepth( BTreeNode_t *pRoot)
{
    if( pRoot == NULL )
        return 0;

    int lDepth = GetBTreeDepth( pRoot->m_pLeft);
    int rDepth = GetBTreeDepth( pRoot->m_pRight);

    return ((( lDepth > rDepth )? lDepth: rDepth) + 1 );        
}


二叉树(4)----求二叉树深度

标签:二叉树

原文地址:http://blog.csdn.net/beitiandijun/article/details/41930583

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