二叉树的深度

题目:输入一棵二叉树,求该树的深度。从根结点到叶结点依次经过的结点(含根、叶结点)形成树的一条路径,最长路径的长度为树的深度。

方法一、递归

实际上考察  树的三种遍历形式 (递归) 三种都可以 

/**
public class TreeNode {
    int val = 0;
    TreeNode left = null;
    TreeNode right = null;

    public TreeNode(int val) {
        this.val = val;

    }

}
*/
public class Solution {
    public int TreeDepth(TreeNode root) {
        if(root==null)//根节点为空
            return 0;
          if(root.left==null&&root.right==null)    //只有根节点
            return 1;
          int left = TreeDepth(root.left);//左序遍历
          int right= TreeDepth(root.right);//右序遍历
        return left>right? left+1:right+1;
        
    }
   
}

 方法二:非递归写法:层次遍历

1)当node=10,第一次循环示例

TreeNode top = queue.poll();//获取队列头部的元素,并删除该元素,   top=10
                                       // 如果此队列为空,则返回null。
            count++;                                                                                      count=1;
            if(top.left != null){
                queue.add(top.left);                                                                queue={node6}
            }
            if(top.right != null){
                queue.add(top.right);                                                               queue={node6,node14}  
            }
            if(count == nextCount){
                nextCount = queue.size();                                                             nextcount==2;
                count = 0;                                                                                       count=0;
                depth++;                                                                                        depth=1;
            }

代码及测例: 

package pag1;
import java.util.LinkedList;
import java.util.Queue;

public class SolutionListNode {
    public int TreeDepth(TreeNode pRoot)
    {
        if(pRoot == null){
            return 0;
        }
        Queue<TreeNode> queue = new LinkedList<TreeNode>();
        queue.add(pRoot);
        int depth = 0, count = 0, nextCount = 1;
        while(queue.size()!=0){
            TreeNode top = queue.poll();
            count++;
            if(top.left != null){
                queue.add(top.left);
            }
            if(top.right != null){
                queue.add(top.right);
            }
            if(count == nextCount){
                nextCount = queue.size();
                count = 0;
                depth++;
            }
        }
        return depth;
    }
        int GetLastIndex(int[]data,int k,int start,int end){
            if(start > end)
                return -1;
            int mid = start+(end-start)/2;
            if(data[mid] == k){
                if((mid <end && data[mid+1] != k) || mid == end)
                    return mid;
                else
                    start = mid+1;
            }else{
                if(data[mid] > k)
                    end = mid - 1;
                else
                    start = mid + 1;
            }
            return GetLastIndex(data,k,start,end);
    }
    public static void main(String[] args) {
        TreeNode root = new TreeNode(10);
        TreeNode six = new TreeNode(6);
        TreeNode four = new TreeNode(4);
        TreeNode eight = new TreeNode(8);
        TreeNode fourteen = new TreeNode(14);
        TreeNode twelve = new TreeNode(12);
        TreeNode sixteen = new TreeNode(16);

        root.left = six;
        root.right = fourteen;

        six.left = four;
        six.right = eight;

        four.left = null;
        four.right = null;

        eight.left = null;
        eight.right = null;

        fourteen.left = twelve;
        fourteen.right = sixteen;

        twelve.left = null;
        twelve.right = null;

        sixteen.left = null;
        sixteen.right = null;


        SolutionListNode test=new SolutionListNode();
        System.out.println(test.TreeDepth(root));
    }
}

 

 

### 计算二叉树深度 #### 方法一:递归法 递归法是最常见的用于计算二叉树深度的方法之一。其核心思想是分别递归地计算左子树和右子树的深度,然后取两者的较大值并加1作为整棵树的深度。 以下是基于 Python 的递归实现: ```python class TreeNode: def __init__(self, val=0, left=None, right=None): self.val = val self.left = left self.right = right def maxDepth(root: TreeNode) -> int: if root is None: return 0 else: left_depth = maxDepth(root.left) # 左子树的深度 right_depth = maxDepth(root.right) # 右子树的深度 return max(left_depth, right_depth) + 1 # 整体深度为左右子树中的最大值再加1 ``` 这种方法的时间复杂度为 O(n),其中 n 是节点的数量,因为每个节点都会被访问一次[^1]。然而需要注意的是,如果二叉树非常不平衡,则可能导致栈溢出的风险,尤其是在极端情况下(如退化成链表的情况)。此外,由于递归会重复调用函数本身,因此效率可能不如迭代方法高[^2]。 #### 方法二:非递归法(层序遍历) 另一种方式是非递归的方式——即采用广度优先搜索(BFS),也叫层次遍历。这种方式不需要显式的递归操作,而是借助队列来逐层处理节点。 下面是使用 BFS 实现的 Python 版本代码: ```python from collections import deque def maxDepth(root: TreeNode) -> int: if not root: return 0 queue = deque([(root, 1)]) # 初始化队列为根节点及其对应的层数 while queue: node, level = queue.popleft() if node.left: queue.append((node.left, level + 1)) if node.right: queue.append((node.right, level + 1)) return level # 返回最后处理的那一层的高度 ``` 此版本通过维护一个队列记录每一层上的所有节点,并逐步扩展到下一层直到没有更多节点为止。相比起递归形式来说,该方法可以有效避免因过深嵌套而引发的堆栈错误问题[^5]。 #### 性能对比分析 尽管两种算法都可以正确得出结果,但在实际应用中它们各有优劣之处。对于平衡较好的二叉树而言,上述任一种方案都能高效完成任务;但对于极度倾斜甚至接近单向列表形态的数据集时,推荐选用迭代型解决方案以规避潜在风险[^4]。 ### 结论 综上所述,无论是采取哪种策略解决此类题目都需要清楚理解各自适用场景以及局限所在以便做出最佳选择依据具体需求情况决定最适合自己的工具箱选项即可满足日常开发工作当中遇到的相关挑战[^3]。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值