【树】二叉树的深度—层序遍历

给定二叉树的深度

题目描述:

minimum-depth-of-binary-tree

求给定二叉树的最小深度。最小深度是指树的根结点到最近叶子结点的最短路径上结点的数量。

Given a binary tree, find its minimum depth.The minimum depth is the number of nodes along the shortest path from the root node down to the nearest leaf node

算法思想:通过层序遍历的算法思想,借助队列实现二叉树层序遍历。

                  每次遍历当前一层中所有结点,存在三种情况:

                  (1) 存在左子树

                  (2) 存在右子树

                  (3) 左右子树都不存在,返回当前二叉树最小深度值

/**
 * Definition for binary tree
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
class Solution {
public:
    int run(TreeNode *root) {
        if(root==NULL)
            return 0;
        int depth=0;
        queue<TreeNode*>myqueue;        //初始化队列
        myqueue.push(root);             //入队
        TreeNode *node;
        while(!myqueue.empty()){        //队列不为空
            int size=myqueue.size();    //当前队列中存在结点的个数
            depth++;                    //层数+1
            for(int i=0;i<size;i++)     //循环遍历当前一层中所有的结点
            {
                node=myqueue.front();   //当前队首结点
                myqueue.pop();          //出队
                if(node->left==NULL&&node->right==NULL)
                    return depth;       //左右子树都为空,即为最小深度
                if(node->left!=NULL)    //存在左子树
                    myqueue.push(node->left);
                if(node->right!=NULL)   //存在右子树
                    myqueue.push(node->right);                
            }
        }
    }
};

题目描述:

maximum-depth-of-binary-tree

求给定二叉树的最大深度,

最大深度是指树的根结点到最远叶子结点的最长路径上结点的数量。

Given a binary tree, find its maximum depth.

The maximum depth is the number of nodes along the longest path from the root node down to the farthest leaf node.

算法思想:通过层序遍历的算法思想,借助队列实现二叉树层序遍历。

                  每次遍历当前一层中所有结点,存在三种情况:

                  (1) 存在左子树

                  (2) 存在右子树

                  (3) 左右子树都不存在,更新二叉树最大深度值

                  最后,返回二叉树最大深度值

/**
 * Definition for binary tree
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
class Solution {
public:
    int maxDepth(TreeNode *root) {
        int maxdepth=0;    //记录二叉树最终最大深度值
        return dfs(root,maxdepth);
    }
    int dfs(TreeNode *root,int maxdepth)
    {
        if(root==NULL)
            return 0;
        int depth=0;        //记录当前二叉树最大深度值
        queue<TreeNode*>myqueue;
        myqueue.push(root);
        TreeNode *node;
        while(!myqueue.empty()){
            int size=myqueue.size();
            depth++;
            for(int i=0;i<size;i++)
            {
                node=myqueue.front();
                myqueue.pop();
                if(node->left==NULL&&node->right==NULL)
                    maxdepth=max(depth,maxdepth);    //取较大值
                if(node->left!=NULL)
                    myqueue.push(node->left);
                if(node->right!=NULL)
                    myqueue.push(node->right);                
            }    //for
        }    //while
        return maxdepth;    //返回二叉树最大深度值
    }
};

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值